local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "OM Script", Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default). LoadingTitle = "outcome memories script", LoadingSubtitle = "by bonge951", ShowText = "outcome memories", -- for mobile users to unhide rayfield, change if you'd like Theme = "Default", -- Check https://docs.sirius.menu/rayfield/configuration/themes ToggleUIKeybind = "K", -- The keybind to toggle the UI visibility (string like "K" or Enum.KeyCode) DisableRayfieldPrompts = false, DisableBuildWarnings = false, -- Prevents Rayfield from warning when the script has a version mismatch with the interface ConfigurationSaving = { Enabled = true, FolderName = nil, -- Create a custom folder for your hub/game FileName = "Big Hub" }, Discord = { Enabled = true, -- Prompt the user to join your Discord server if their executor supports it Invite = "https://discord.gg/dnkVUFuMr", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ ABCD would be ABCD RememberJoins = true -- Set this to false to make them join the discord every time they load it up }, KeySystem = false, -- Set this to true to use our key system KeySettings = { Title = "OM script key", Subtitle = "key system", Note = "join the discord to use script https://discord.gg/dnkVUFuMr", -- Use this to tell the user how to get a key FileName = "bongo", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from 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") } }) local Tab = Window:CreateTab("esp", 4483362458) -- Title, 137182874573549 local Section = Tab:CreateSection("Esp for low ping") local Button = Tab:CreateButton({ Name = "Fullbright no fog esp", Callback = function() --[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] loadstring(game:HttpGet('https://pastebin.com/raw/Rc1PmqpF',true))() -- The function that takes place when the button is pressed end, }) local Section = Tab:CreateSection("Esp for high ping") local Button = Tab:CreateButton({ Name = "esp", Callback = function() --[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] loadstring(game:HttpGet("https://gist.githubusercontent.com/cquil123/3ee03f641bf59c40b5305135e6de02c1/raw"))() -- The function that takes place when the button is pressed end, }) local Tab1 = Window:CreateTab("local", 4483362458) -- Title, Image local Section = Tab1:CreateSection("Speed") local Button = Tab1:CreateButton({ Name = "speed (makes you slightly faster than exe", Callback = function() -- by omgamlookyou4 / himrng local UserInputService = game:GetService("UserInputService") local RunService = game:GetService("RunService") local Players = game:GetService("Players") local player = Players.LocalPlayer local char = player.Character or player.CharacterAdded:Wait() local hrp = char:WaitForChild("HumanoidRootPart") local humanoid = char:WaitForChild("Humanoid") -- speed local walkSpeed = 16 local runSpeed = 75 local currentSpeed = walkSpeed local running = false UserInputService.InputBegan:Connect(function(input, gpe) if gpe then return end if input.KeyCode == Enum.KeyCode.LeftShift then running = true currentSpeed = runSpeed end end) UserInputService.InputEnded:Connect(function(input, gpe) if input.KeyCode == Enum.KeyCode.LeftShift then running = false currentSpeed = walkSpeed end end) RunService.RenderStepped:Connect(function(dt) local moveDir = humanoid.MoveDirection if moveDir.Magnitude > 0 then hrp.CFrame = hrp.CFrame + (moveDir * currentSpeed * dt) end end) -- by omgamlookyou4 / himrng -- The function that takes place when the button is pressed end, }) local Section = Tab1:CreateSection("jump") local Button = Tab1:CreateButton({ Name = "no jump cd", Callback = function() --[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] local Players = game:GetService("Players") local StarterGui = game:GetService("StarterGui") local UserInputService = game:GetService("UserInputService") local RunService = game:GetService("RunService") local lp = Players.LocalPlayer task.spawn(function() while task.wait(0.1) do pcall(function() StarterGui:SetCore("JumpButtonEnabled", true) StarterGui:SetCore("JumpButtonVisible", true) end) end end) local function setupChar(char) local hum = char:WaitForChild("Humanoid") RunService.RenderStepped:Connect(function() if hum then hum:SetStateEnabled(Enum.HumanoidStateType.Jumping, true) hum.AutoJumpEnabled = false end end) end if lp.Character then setupChar(lp.Character) end lp.CharacterAdded:Connect(setupChar) -- The function that takes place when the button is pressed end, }) local Tab2 = Window:CreateTab("auto lock", 4483362458) -- Title, 137182874573549 local Section = Tab2:CreateSection("STUNNERS (use before match)") local Button = Tab2:CreateButton({ Name = "Tails", Callback = function() local args = { "Tails" } game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Voted"):FireServer(unpack(args)) -- The function that takes place when the button is pressed end, }) local Button = Tab2:CreateButton({ Name = "Sonic", Callback = function() local args = { "Sonic" } game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Voted"):FireServer(unpack(args)) -- The function that takes place when the button is pressed end, }) local Button = Tab2:CreateButton({ Name = "metal sonic", Callback = function() local args = { "MetalSonic" } game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Voted"):FireServer(unpack(args)) -- The function that takes place when the button is pressed end, }) local Button = Tab2:CreateButton({ Name = "Amy", Callback = function() local args = { "Amy" } game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Voted"):FireServer(unpack(args)) -- The function that takes place when the button is pressed end, }) local Button = Tab2:CreateButton({ Name = "Knuckles", Callback = function() local args = { "Knuckles" } game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Voted"):FireServer(unpack(args)) -- The function that takes place when the button is pressed end, }) local Section = Tab2:CreateSection("HEALERS (use before match)") local Button = Tab2:CreateButton({ Name = "Cream", Callback = function() local args = { "Cream" } game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Voted"):FireServer(unpack(args)) -- The function that takes place when the button is pressed end, }) local Section = Tab2:CreateSection("SURVIVALISTS (use before match)") local Button = Tab2:CreateButton({ Name = "EGGMAN", Callback = function() local args = { "Eggman" } game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Voted"):FireServer(unpack(args)) -- The function that takes place when the button is pressed end, }) local Tab3 = Window:CreateTab("Character scripts", 4483362458) -- Title, Image Tab3:CreateSection("Knuckles") local Button = Tab3:CreateButton({ Name = "Punch tech (BANNABLE!)", Callback = function() --[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] local _c=string.char local function _s(t)local r="";for i=1,#t do r=r.._c(t[i])end;return r end local _g=game local _p=_g:GetService(_s{80,108,97,121,101,114,115}) local _lp=_p[_s{76,111,99,97,108,80,108,97,121,101,114}] local _w=workspace local function _x() if _lp[_s{67,104,97,114,97,99,116,101,114}] then local _pf=_w:FindFirstChild(_s{80,108,97,121,101,114,115}) local _m=_pf and _pf:FindFirstChild(_lp[_s{78,97,109,101}]) if _m then local _a=_m:GetAttribute(_s{83,116,97,116,101}) if _a==_s{102,111,99,117,115} then _m:SetAttribute(_s{83,116,97,116,101},_s{112,117,110,99,104}) _m:SetAttribute(_s{67,97,110,83,112,114,105,110,116},true) end end end end while true do _x() task.wait(1) end -- The function that takes place when the button is pressed end, }) local Tab4 = Window:CreateTab("aimbot", 4483362458) -- Title, 137182874573549 local Section = Tab4:CreateSection("v1") local Button = Tab4:CreateButton({ Name = "Aimbot manual", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/sdfesdfsedf/srgtergasdfs/main/silent", true))() -- The function that takes place when the button is pressed end, }) local Tab5 = Window:CreateTab("fov", 4483362458) -- Title, 137182874573549 local Slider = Tab5:CreateSlider({ Name = "fov number", Range = {0, 120}, Increment = 10, Suffix = "amount", CurrentValue = 10, 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 Callback = function(Value) --[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] workspace.Camera.FieldOfView = Value -- The function that takes place when the slider changes -- The variable (Value) is a number which correlates to the value the slider is currently at end, })