These universal Roblox scripts work for any game. Won’t work for some that have good anti-cheats like fly won’t work in BedWars.
If you want scripts for specific games then you should go to – Roblox Scripts OR search for a game by pressing the search button on top of the website

Anti AFK
local Module = require(game:GetService("Players").LocalPlayer.PlayerScripts.ClientMain.Replications.Workers.WalkDummy) setconstant(Module,34,function() game:GetService("RunService").Heartbeat:Wait() end)
Fly
-- Press "E" to fly and unfly -- You have to re-apply the script if you die loadstring(game:HttpGet("https://pastebin.com/raw/7rXZ9VNc", true))()
Infinite Jump
local InfiniteJumpEnabled = true game:GetService("UserInputService").JumpRequest:connect(function() if InfiniteJumpEnabled then game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping") end end) local InfiniteJump = CreateButton("Infinite Jump: Off", StuffFrame) InfiniteJump.Position = UDim2.new(0,10,0,130) InfiniteJump.Size = UDim2.new(0,150,0,30) InfiniteJump.MouseButton1Click:connect(function() local state = InfiniteJump.Text:sub(string.len("Infinite Jump: ") + 1) --too lazy to count lol local new = state == "Off" and "On" or state == "On" and "Off" InfiniteJumpEnabled = new == "On" InfiniteJump.Text = "Infinite Jump: " .. new end)
Change Speed And Jump Power
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 80 -- Change number for different speed game.Players.LocalPlayer.Character.Humanoid.JumpPower = 80 -- change number for different jump power

Infinite Yield script
This is a admin command GUI. You can type in noclip press enter and you will be able to noclip. It’s really nice what this Infinite Yield script can do in almost all games
loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
Universal Roblox Script | Auto Clicker

This script is really good for games like Anime Clicker Simulator
loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/JustEzpi/ROBLOX-Scripts/main/ROBLOX_AutoClicker"))()