-- Gui to Lua -- Version: 3.2 -- Instances: local ScreenGui = Instance.new("ScreenGui") local ImageButton = Instance.new("ImageButton") local TextBox = Instance.new("TextBox") local UICorner = Instance.new("UICorner") local UIAspectRatioConstraint = Instance.new("UIAspectRatioConstraint") --Properties: ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling ScreenGui.ResetOnSpawn = false ImageButton.Parent = ScreenGui ImageButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255) ImageButton.BorderColor3 = Color3.fromRGB(0, 0, 0) ImageButton.BorderSizePixel = 0 ImageButton.Position = UDim2.new(0.64352715, 0, 0.772727251, 0) ImageButton.Size = UDim2.new(0.0684802979, 0, 0.148760334, 0) ImageButton.Image = "rbxassetid://14992773801" ImageButton.ImageColor3 = Color3.fromRGB(150, 150, 150) TextBox.Parent = ScreenGui TextBox.BackgroundColor3 = Color3.fromRGB(136, 255, 0) TextBox.BorderColor3 = Color3.fromRGB(0, 0, 0) TextBox.BorderSizePixel = 0 TextBox.Position = UDim2.new(0.529080689, 0, 0.84710741, 0) TextBox.Size = UDim2.new(0, 122, 0, 36) TextBox.Font = Enum.Font.SourceSansBold TextBox.PlaceholderText = "Speed" TextBox.Text = "" TextBox.TextColor3 = Color3.fromRGB(0, 0, 0) TextBox.TextScaled = true TextBox.TextSize = 14.000 TextBox.TextWrapped = true UICorner.Parent = TextBox UIAspectRatioConstraint.Parent = ScreenGui UIAspectRatioConstraint.AspectRatio = 2.202 -- Scripts: local function XLWJO_fake_script() -- ImageButton.LocalScript local script = Instance.new('LocalScript', ImageButton) local wallthing = false script.Parent.Activated:Connect(function() wallthing = not wallthing if wallthing then script.Parent.ImageColor3 = Color3.fromRGB(255, 255, 255) else script.Parent.ImageColor3 = Color3.fromRGB(150, 150, 150) end end) while task.wait(0.01) do if wallthing then if tonumber(script.Parent.Parent.TextBox.Text) then game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.LookVector * tonumber(script.Parent.Parent.TextBox.Text) else game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.LookVector * 0.8 end end end end coroutine.wrap(XLWJO_fake_script)()