-- original script by Rip_Dummy021 (he made a free and paid script that in the paid version changes your walkspeed, in the free version it has a limit) local tweenservice = game:GetService("TweenService") local userinputservice = game:GetService("UserInputService") local localplayer = game:GetService("Players").LocalPlayer local mouse = localplayer:GetMouse() local character = localplayer.Character local hrp = character.HumanoidRootPart local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "stupidity script leak", Icon = 0, LoadingTitle = "loading", LoadingSubtitle = "by idkwhattoput134 on discord", Theme = "Default", DisableRayfieldPrompts = false, DisableBuildWarnings = false, ConfigurationSaving = { Enabled = false, FolderName = nil, FileName = "stupidity script configuration save" }, Discord = { Enabled = true, -- set to false if you dont want to join Invite = "PpdBsej8u5", RememberJoins = true }, KeySystem = false, KeySettings = { Title = "how the hell", Subtitle = "disable the key system", Note = "key is dontpickyournosefriendlyreminder for if you get stuck", FileName = "stupidity hub key", SaveKey = true, GrabKeyFromSite = false, Key = {"dontpickyournosefriendlyreminder"} } }) local mainTab = Window:CreateTab("main tab", 4483362458) local walkspeedTextBox = mainTab:CreateInput({ Name = "walkspeed", CurrentValue = "16", PlaceholderText = "amount here (default is 16, numbers only)", RemoveTextAfterFocusLost = true, Flag = "chosenWalkSpeed", Callback = function(Text) character.Humanoid.WalkSpeed = tonumber(Text) end, }) local jumpPowerTextBox = mainTab:CreateInput({ Name = "jumppower", CurrentValue = "50", PlaceholderText = "amount here (default is 50, numbers only)", RemoveTextAfterFocusLost = true, Flag = "chosenJumpPower", Callback = function(Text) character.Humanoid.JumpPower = tonumber(Text) end, }) local tptoolgiveButton = mainTab:CreateButton({ Name = "give tp tool", Callback = function() local tptool = Instance.new("Tool") tptool.Name = "tp tool" tptool.Parent = localplayer.Backpack tptool.RequiresHandle = false -- i didnt put this and it gave an error, haha tptool.Equipped:Connect(function() getgenv().equipped = true userinputservice.InputBegan:Connect(function(input, gameprocessedevent) if input.UserInputType == Enum.UserInputType.MouseButton1 and gameprocessedevent == false then if getgenv().equipped == true then -- part is hrp local tweeninfo = TweenInfo.new(0.1) local goal = {} goal.CFrame = mouse.Hit local tween = tweenservice:Create(hrp, tweeninfo, goal) tween:Play() end elseif input.UserInputType == Enum.UserInputType.Touch and gameprocessedevent == false then if getgenv().equipped == true then -- part is hrp local tweeninfo = TweenInfo.new(0.1) local goal = {} goal.CFrame = mouse.Hit local tween = tweenservice:Create(hrp, tweeninfo, goal) tween:Play() end end end) end) tptool.Unequipped:Connect(function() getgenv().equipped = false end) end, }) -- keep this at the bottom local otherTab = Window:CreateTab("other", "x") local closeguibutton = otherTab:CreateButton({ Name = "close gui", Callback = function() Rayfield:Destroy() end, }) local chatbypasstxtbox = mainTab:CreateInput({ Name = "bypass chat filter", CurrentValue = "", PlaceholderText = "text here", RemoveTextAfterFocusLost = true, Flag = "chatbypasstxt", Callback = function(Text) local characterTable = {} table.clear(characterTable) for i=1, string.len(Text), 1 do -- we convert the string to a tabl table.insert(characterTable, i, Text:sub(i, i)) end local a = table.concat(characterTable, ">") setclipboard(a) end, })