Bongo hub OUTCOME MEMORIES SCRIPT
454 VISUALIZAÇÕES
04/12/2025
Outcome Memories v0.1
Descrição
ESP, Speed Hacks, No Jump Cooldown, Auto Lock Characters, Character Scripts, FOV Setting, and Aimbot.
JOGOS SUPORTADOS
Código do Script
1local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
2
3local Window = Rayfield:CreateWindow({
4 Name = "OM Script",
5 Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default).
6 LoadingTitle = "outcome memories script",
7 LoadingSubtitle = "by bonge951",
8 ShowText = "outcome memories", -- for mobile users to unhide rayfield, change if you'd like
9 Theme = "Default", -- Check https://docs.sirius.menu/rayfield/configuration/themes
10
11 ToggleUIKeybind = "K", -- The keybind to toggle the UI visibility (string like "K" or Enum.KeyCode)
12
13 DisableRayfieldPrompts = false,
14 DisableBuildWarnings = false, -- Prevents Rayfield from warning when the script has a version mismatch with the interface
15
16 ConfigurationSaving = {
17 Enabled = true,
18 FolderName = nil, -- Create a custom folder for your hub/game
19 FileName = "Big Hub"
20 },
21
22 Discord = {
23 Enabled = true, -- Prompt the user to join your Discord server if their executor supports it
24 Invite = "https://discord.gg/dnkVUFuMr", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ ABCD would be ABCD
25 RememberJoins = true -- Set this to false to make them join the discord every time they load it up
26 },
27
28 KeySystem = false, -- Set this to true to use our key system
29 KeySettings = {
30 Title = "OM script key",
31 Subtitle = "key system",
32 Note = "join the discord to use script https://discord.gg/dnkVUFuMr", -- Use this to tell the user how to get a key
33 FileName = "bongo", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
34 SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
35 GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
36 Key = {"bongo"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","me")
37 }
38})
39
40local Tab = Window:CreateTab("esp", 4483362458) -- Title, 137182874573549
41
42local Section = Tab:CreateSection("Esp for low ping")
43
44local Button = Tab:CreateButton({
45 Name = "Fullbright no fog esp",
46 Callback = function() --[[
47 WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
48]]
49loadstring(game:HttpGet('https://pastebin.com/raw/Rc1PmqpF',true))()
50 -- The function that takes place when the button is pressed
51 end,
52})
53
54local Section = Tab:CreateSection("Esp for high ping")
55
56local Button = Tab:CreateButton({
57 Name = "esp",
58 Callback = function() --[[
59 WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
60]]
61loadstring(game:HttpGet("https://gist.githubusercontent.com/cquil123/3ee03f641bf59c40b5305135e6de02c1/raw"))()
62 -- The function that takes place when the button is pressed
63 end,
64})
65
66local Tab1 = Window:CreateTab("local", 4483362458) -- Title, Image
67
68local Section = Tab1:CreateSection("Speed")
69
70local Button = Tab1:CreateButton({
71 Name = "speed (makes you slightly faster than exe",
72 Callback = function() -- by omgamlookyou4 / himrng
73
74local UserInputService = game:GetService("UserInputService")
75local RunService = game:GetService("RunService")
76local Players = game:GetService("Players")
77
78local player = Players.LocalPlayer
79local char = player.Character or player.CharacterAdded:Wait()
80local hrp = char:WaitForChild("HumanoidRootPart")
81local humanoid = char:WaitForChild("Humanoid")
82
83-- speed
84local walkSpeed = 16
85local runSpeed = 75
86local currentSpeed = walkSpeed
87
88
89local running = false
90
91UserInputService.InputBegan:Connect(function(input, gpe)
92 if gpe then return end
93 if input.KeyCode == Enum.KeyCode.LeftShift then
94 running = true
95 currentSpeed = runSpeed
96 end
97end)
98
99UserInputService.InputEnded:Connect(function(input, gpe)
100 if input.KeyCode == Enum.KeyCode.LeftShift then
101 running = false
102 currentSpeed = walkSpeed
103 end
104end)
105
106
107RunService.RenderStepped:Connect(function(dt)
108 local moveDir = humanoid.MoveDirection
109 if moveDir.Magnitude > 0 then
110
111 hrp.CFrame = hrp.CFrame + (moveDir * currentSpeed * dt)
112 end
113end)
114
115-- by omgamlookyou4 / himrng
116 -- The function that takes place when the button is pressed
117 end,
118})
119
120local Section = Tab1:CreateSection("jump")
121
122local Button = Tab1:CreateButton({
123 Name = "no jump cd",
124 Callback = function() --[[
125 WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
126]]
127local Players = game:GetService("Players")
128local StarterGui = game:GetService("StarterGui")
129local UserInputService = game:GetService("UserInputService")
130local RunService = game:GetService("RunService")
131
132local lp = Players.LocalPlayer
133
134task.spawn(function()
135 while task.wait(0.1) do
136 pcall(function()
137 StarterGui:SetCore("JumpButtonEnabled", true)
138 StarterGui:SetCore("JumpButtonVisible", true)
139 end)
140 end
141end)
142
143local function setupChar(char)
144 local hum = char:WaitForChild("Humanoid")
145
146 RunService.RenderStepped:Connect(function()
147 if hum then
148 hum:SetStateEnabled(Enum.HumanoidStateType.Jumping, true)
149 hum.AutoJumpEnabled = false
150 end
151 end)
152end
153
154if lp.Character then
155 setupChar(lp.Character)
156end
157lp.CharacterAdded:Connect(setupChar)
158 -- The function that takes place when the button is pressed
159 end,
160})
161
162local Tab2 = Window:CreateTab("auto lock", 4483362458) -- Title, 137182874573549
163
164local Section = Tab2:CreateSection("STUNNERS (use before match)")
165
166local Button = Tab2:CreateButton({
167 Name = "Tails",
168 Callback = function() local args = {
169 "Tails"
170}
171game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Voted"):FireServer(unpack(args))
172 -- The function that takes place when the button is pressed
173 end,
174})
175
176local Button = Tab2:CreateButton({
177 Name = "Sonic",
178 Callback = function() local args = {
179 "Sonic"
180}
181game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Voted"):FireServer(unpack(args))
182 -- The function that takes place when the button is pressed
183 end,
184})
185
186local Button = Tab2:CreateButton({
187 Name = "metal sonic",
188 Callback = function() local args = {
189 "MetalSonic"
190}
191game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Voted"):FireServer(unpack(args))
192 -- The function that takes place when the button is pressed
193 end,
194})
195
196local Button = Tab2:CreateButton({
197 Name = "Amy",
198 Callback = function() local args = {
199 "Amy"
200}
201game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Voted"):FireServer(unpack(args))
202 -- The function that takes place when the button is pressed
203 end,
204})
205
206local Button = Tab2:CreateButton({
207 Name = "Knuckles",
208 Callback = function() local args = {
209 "Knuckles"
210}
211game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Voted"):FireServer(unpack(args))
212 -- The function that takes place when the button is pressed
213 end,
214})
215
216local Section = Tab2:CreateSection("HEALERS (use before match)")
217
218local Button = Tab2:CreateButton({
219 Name = "Cream",
220 Callback = function() local args = {
221 "Cream"
222}
223game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Voted"):FireServer(unpack(args))
224 -- The function that takes place when the button is pressed
225 end,
226})
227
228local Section = Tab2:CreateSection("SURVIVALISTS (use before match)")
229
230local Button = Tab2:CreateButton({
231 Name = "EGGMAN",
232 Callback = function() local args = {
233 "Eggman"
234}
235game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Voted"):FireServer(unpack(args))
236 -- The function that takes place when the button is pressed
237 end,
238})
239
240local Tab3 = Window:CreateTab("Character scripts", 4483362458) -- Title, Image
241
242Tab3:CreateSection("Knuckles")
243
244local Button = Tab3:CreateButton({
245 Name = "Punch tech (BANNABLE!)",
246 Callback = function() --[[
247 WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
248]]
249local _c=string.char
250local function _s(t)local r="";for i=1,#t do r=r.._c(t[i])end;return r end
251local _g=game
252local _p=_g:GetService(_s{80,108,97,121,101,114,115})
253local _lp=_p[_s{76,111,99,97,108,80,108,97,121,101,114}]
254local _w=workspace
255
256local function _x()
257 if _lp[_s{67,104,97,114,97,99,116,101,114}] then
258 local _pf=_w:FindFirstChild(_s{80,108,97,121,101,114,115})
259 local _m=_pf and _pf:FindFirstChild(_lp[_s{78,97,109,101}])
260 if _m then
261 local _a=_m:GetAttribute(_s{83,116,97,116,101})
262 if _a==_s{102,111,99,117,115} then
263 _m:SetAttribute(_s{83,116,97,116,101},_s{112,117,110,99,104})
264 _m:SetAttribute(_s{67,97,110,83,112,114,105,110,116},true)
265 end
266 end
267 end
268end
269
270while true do
271 _x()
272 task.wait(1)
273end
274 -- The function that takes place when the button is pressed
275 end,
276})
277
278local Tab4 = Window:CreateTab("aimbot", 4483362458) -- Title, 137182874573549
279
280local Section = Tab4:CreateSection("v1")
281
282local Button = Tab4:CreateButton({
283 Name = "Aimbot manual",
284 Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/sdfesdfsedf/srgtergasdfs/main/silent", true))()
285 -- The function that takes place when the button is pressed
286 end,
287})
288
289local Tab5 = Window:CreateTab("fov", 4483362458) -- Title, 137182874573549
290
291local Slider = Tab5:CreateSlider({
292 Name = "fov number",
293 Range = {0, 120},
294 Increment = 10,
295 Suffix = "amount",
296 CurrentValue = 10,
297 Flag = "Slider1", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
298 Callback = function(Value)
299
300--[[
301 WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
302]]
303workspace.Camera.FieldOfView = Value
304
305 -- The function that takes place when the slider changes
306 -- The variable (Value) is a number which correlates to the value the slider is currently at
307 end,
308})Descoberta
Sailor Piece Script Auto Farm, Auto Quest 2026
@JuninhoScripts
[🌙Moon Update⚔️] Sailor Piece
Views
95Posted
1 dayRate
5.0/5.0Auto Farm - Midgard
@HELLHOUND
[🌙Moon Update⚔️] Sailor Piece
Views
33Posted
1 dayRate
5.0/5.0Manus combate orbit no key
@John_developer
Universal
Views
321Posted
11dRate
5.0/5.0FIND FRUIT [Midgard]
@HELLHOUND
Blox Fruits
Views
192Posted
11dRate
5.0/5.0
Codex
Delta
Volt