-- Gui to Lua -- Version: 3.2 -- Instances: local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local TextLabel = Instance.new("TextLabel") local UICorner = Instance.new("UICorner") local ImageLabel = Instance.new("ImageLabel") local Walkspeed = Instance.new("TextButton") local UICorner_2 = Instance.new("UICorner") local UICorner_3 = Instance.new("UICorner") local walkbox = Instance.new("TextBox") local UICorner_4 = Instance.new("UICorner") --Properties: ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(255, 85, 0) Frame.BorderColor3 = Color3.fromRGB(0, 0, 0) Frame.BorderSizePixel = 0 Frame.Position = UDim2.new(0.225021541, 0, 0.21262002, 0) Frame.Size = UDim2.new(0, 527, 0, 272) TextLabel.Parent = Frame TextLabel.BackgroundColor3 = Color3.fromRGB(255, 0, 0) TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel.BorderSizePixel = 0 TextLabel.Size = UDim2.new(0, 527, 0, 50) TextLabel.Font = Enum.Font.Arcade TextLabel.Text = "GoofyUserAh's walkspeed changer gui" TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0) TextLabel.TextSize = 25.000 UICorner.Parent = TextLabel ImageLabel.Parent = Frame ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) ImageLabel.BorderColor3 = Color3.fromRGB(0, 0, 0) ImageLabel.BorderSizePixel = 0 ImageLabel.Position = UDim2.new(-0.00189753319, 0, 0.183823526, 0) ImageLabel.Size = UDim2.new(0, 527, 0, 222) ImageLabel.Image = "rbxassetid://5430597512" Walkspeed.Name = "Walkspeed" Walkspeed.Parent = Frame Walkspeed.BackgroundColor3 = Color3.fromRGB(255, 85, 0) Walkspeed.BorderColor3 = Color3.fromRGB(0, 0, 0) Walkspeed.BorderSizePixel = 0 Walkspeed.Position = UDim2.new(0.307400376, 0, 0.698529422, 0) Walkspeed.Size = UDim2.new(0, 200, 0, 50) Walkspeed.Font = Enum.Font.Arcade Walkspeed.Text = "enter da speed" Walkspeed.TextColor3 = Color3.fromRGB(0, 0, 0) Walkspeed.TextSize = 20.000 UICorner_2.Parent = Walkspeed UICorner_3.Parent = Frame walkbox.Name = "walkbox" walkbox.Parent = Frame walkbox.BackgroundColor3 = Color3.fromRGB(255, 255, 255) walkbox.BorderColor3 = Color3.fromRGB(0, 0, 0) walkbox.BorderSizePixel = 0 walkbox.Position = UDim2.new(0.237191647, 0, 0.386029422, 0) walkbox.Size = UDim2.new(0, 260, 0, 61) walkbox.Font = Enum.Font.SourceSans walkbox.Text = "" walkbox.TextColor3 = Color3.fromRGB(0, 0, 0) walkbox.TextSize = 14.000 UICorner_4.Parent = walkbox -- Scripts: local function KKPMDH_fake_script() -- Frame.drag local script = Instance.new('LocalScript', Frame) local UIS = game:GetService('UserInputService') local frame = script.Parent local dragToggle = nil local dragSpeed = 0.25 local dragStart = nil local startPos = nil local function updateInput(input) local delta = input.Position - dragStart local position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) game:GetService('TweenService'):Create(frame, TweenInfo.new(dragSpeed), {Position = position}):Play() end frame.InputBegan:Connect(function(input) if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then dragToggle = true dragStart = input.Position startPos = frame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragToggle = false end end) end end) UIS.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then if dragToggle then updateInput(input) end end end) end coroutine.wrap(KKPMDH_fake_script)() local function TIPUUF_fake_script() -- Walkspeed.LocalScript local script = Instance.new('LocalScript', Walkspeed) script.Parent.MouseButton1Click:Connect(function() local plr = game.Players.LocalPlayer -- Going inTo Players Section Looking For You're Local Character local char = plr.Character char.Humanoid.WalkSpeed = (script.parent.parent.walkbox.Text) end) end coroutine.wrap(TIPUUF_fake_script)() local function IAPCX_fake_script() -- ScreenGui.notifaction local script = Instance.new('LocalScript', ScreenGui) game.StarterGui:SetCore("SendNotification", { Title = "enjoy!"; -- title Text = "script by GoofyUserAh/me"; --description Icon = "rbxassetid://13333189485"; --icon Duration = "5"; -- how long its on screen }) end coroutine.wrap(IAPCX_fake_script)()