ToraIsMe Wacky Wizards Script
Roblox Scripts is what Roblox players and coders use to build interactive games. To be more specific, players use Lua scripts—a popular scripting and programming language.
We do not any harmful on your devices we always check it before we post online.
Instruction
1.Open Roblox And Start Playing 2.Click The Blue Circle To Copy The Script Code 3.Paste The Script Code Into Your Executor 4.Then Execute The Script Code 5.Enjoy
Use your dummy account first we are not responsible if your account getting Ban.
Script Code
local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/0x"))() local window = library:Window("Wacky Wizards RB Battles") window:Button("Finish Obby", function(x) for i,v in pairs(game:GetService("Workspace").ObbyFolder:GetDescendants()) do if v.Name == "EndZone" then game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Position) end end end) window:Button("Remove Laser", function(x) for i,v in pairs(game:GetService("Workspace").ObbyFolder.CurrentObby:GetDescendants()) do if v.Name == "Kill" then v:Destroy() end end end) window:Button("Infinite Jump", function(x) game:GetService("UserInputService").JumpRequest:connect(function() game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping") end) end) window:Slider("WalkSpeed", "WalkSpeed", 16, 100, function(x) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = x end) window:Label("YT: Tora IsMe")