Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local Script = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local TextButton = Instance.new("TextButton")
- local UICorner = Instance.new("UICorner")
- local TextButton_2 = Instance.new("TextButton")
- local UICorner_2 = Instance.new("UICorner")
- local TextButton_3 = Instance.new("TextButton")
- local UICorner_3 = Instance.new("UICorner")
- --Properties:
- Script.Name = "Script"
- Script.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- Script.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = Script
- Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Frame.BorderSizePixel = 3
- Frame.Position = UDim2.new(0.00902934559, 0, 0.682098746, 0)
- Frame.Size = UDim2.new(0, 258, 0, 195)
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.fromRGB(47, 47, 47)
- TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.BorderSizePixel = 3
- TextLabel.Position = UDim2.new(0.0852713212, 0, -0.148717955, 0)
- TextLabel.Size = UDim2.new(0, 213, 0, 50)
- TextLabel.Font = Enum.Font.FredokaOne
- TextLabel.Text = "FE Walkspeed Changer"
- TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.TextSize = 14.000
- TextButton.Parent = Frame
- TextButton.BackgroundColor3 = Color3.fromRGB(27, 27, 27)
- TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TextButton.BorderSizePixel = 0
- TextButton.Position = UDim2.new(0.108527131, 0, 0.189743593, 0)
- TextButton.Size = UDim2.new(0, 200, 0, 36)
- TextButton.Font = Enum.Font.SourceSansBold
- TextButton.Text = "Slow"
- TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextButton.TextSize = 14.000
- UICorner.Parent = TextButton
- TextButton_2.Parent = Frame
- TextButton_2.BackgroundColor3 = Color3.fromRGB(27, 27, 27)
- TextButton_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TextButton_2.BorderSizePixel = 0
- TextButton_2.Position = UDim2.new(0.112403102, 0, 0.466666669, 0)
- TextButton_2.Size = UDim2.new(0, 200, 0, 36)
- TextButton_2.Font = Enum.Font.SourceSansBold
- TextButton_2.Text = "Normal"
- TextButton_2.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextButton_2.TextSize = 14.000
- UICorner_2.Parent = TextButton_2
- TextButton_3.Parent = Frame
- TextButton_3.BackgroundColor3 = Color3.fromRGB(27, 27, 27)
- TextButton_3.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TextButton_3.BorderSizePixel = 0
- TextButton_3.Position = UDim2.new(0.112403102, 0, 0.733333349, 0)
- TextButton_3.Size = UDim2.new(0, 200, 0, 36)
- TextButton_3.Font = Enum.Font.SourceSansBold
- TextButton_3.Text = "Fast"
- TextButton_3.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextButton_3.TextSize = 14.000
- UICorner_3.Parent = TextButton_3
- -- Scripts:
- local function JGILAH_fake_script() -- TextButton.LocalScript
- local script = Instance.new('LocalScript', TextButton)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 5
- end
- coroutine.wrap(JGILAH_fake_script)()
- local function XOWUPS_fake_script() -- TextButton_2.LocalScript
- local script = Instance.new('LocalScript', TextButton_2)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
- end
- coroutine.wrap(XOWUPS_fake_script)()
- local function XCNW_fake_script() -- TextButton_3.LocalScript
- local script = Instance.new('LocalScript', TextButton_3)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
- end
- coroutine.wrap(XCNW_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment