I would make a button that gives you the walkspeed you entered in a textbox in a GUI. But i got errors and i don't find any post with the answer. Please help me! This is my current script (Its a LocalScript):
local plr = game.Players.LocalPlayer.Character.Humanoid local numb = script.Parent.Parent.WsNumber.Text script.Parent.MouseButton1Click:Connect(function() plr.WalkSpeed = numb end)
change:
local numb = script.Parent.Parent.WsNumber.Text
to:
local numb = tonumber(script.Parent.Parent.WsNumber.Text)