-- Gui to Lua -- Version: 3.2 -- Instances: local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local TextBox = Instance.new("TextBox") local TextButton = Instance.new("TextButton") --Properties: ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Frame.BackgroundTransparency = 1.000 Frame.BorderColor3 = Color3.fromRGB(0, 0, 0) Frame.BorderSizePixel = 0 Frame.Position = UDim2.new(0, 0, 0.29902643, 0) Frame.Size = UDim2.new(0, 170, 0, 181) TextBox.Parent = Frame TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextBox.BorderColor3 = Color3.fromRGB(0, 0, 0) TextBox.BorderSizePixel = 0 TextBox.Position = UDim2.new(0, 0, 0.0828729272, 0) TextBox.Size = UDim2.new(0, 170, 0, 50) TextBox.Font = Enum.Font.SourceSans TextBox.Text = "" TextBox.TextColor3 = Color3.fromRGB(0, 0, 0) TextBox.TextSize = 14.000 TextButton.Parent = Frame TextButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0) TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0) TextButton.BorderSizePixel = 0 TextButton.Position = UDim2.new(0, 0, 0.359116018, 0) TextButton.Size = UDim2.new(0, 170, 0, 50) TextButton.Font = Enum.Font.SourceSans TextButton.Text = "Set WalkSpeed" TextButton.TextColor3 = Color3.fromRGB(0, 0, 0) TextButton.TextSize = 14.000 -- Scripts: local function GAHEK_fake_script() -- Frame.LocalScript local script = Instance.new('LocalScript', Frame) -- Put this LocalScript inside your ScreenGui (e.g. in StarterGui) -- Make sure you have a TextBox and a TextButton inside the ScreenGui local Players = game:GetService("Players") local player = Players.LocalPlayer local gui = script.Parent local textBox = gui:WaitForChild("TextBox") local button = gui:WaitForChild("TextButton") button.MouseButton1Click:Connect(function() local char = player.Character or player.CharacterAdded:Wait() local humanoid = char:FindFirstChildOfClass("Humanoid") if humanoid then local speed = tonumber(textBox.Text) if speed then humanoid.WalkSpeed = speed else warn("Not a valid number!") end end end) end coroutine.wrap(GAHEK_fake_script)()