Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --// Made by PigeonDude
- -- Instances:
- local Speed = Instance.new("ScreenGui")
- local Main = Instance.new("Frame")
- local SpeedCounter = Instance.new("TextLabel")
- local Add = Instance.new("TextButton")
- local Subtract = Instance.new("TextButton")
- local ApplySpeed = Instance.new("TextButton")
- --Properties:
- Speed.Name = "Speed"
- Speed.Parent = game.CoreGui
- Speed.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Main.Name = "Main"
- Main.Parent = Speed
- Main.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
- Main.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Main.BorderSizePixel = 5
- Main.Position = UDim2.new(0.377512574, 0, 0.774731815, 0)
- Main.Size = UDim2.new(0.201758757, 0, 0.206078663, 0)
- Main.Active = true
- Main.Draggable = true
- SpeedCounter.Name = "SpeedCounter"
- SpeedCounter.Parent = Main
- SpeedCounter.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
- SpeedCounter.BorderColor3 = Color3.fromRGB(0, 0, 0)
- SpeedCounter.BorderSizePixel = 5
- SpeedCounter.Position = UDim2.new(0.258418739, 0, 0.504353046, 0)
- SpeedCounter.Size = UDim2.new(0.477905959, 0, 0.494064152, 0)
- SpeedCounter.Font = Enum.Font.GothamBlack
- SpeedCounter.Text = 16
- SpeedCounter.TextColor3 = Color3.fromRGB(255, 255, 255)
- SpeedCounter.TextScaled = true
- SpeedCounter.TextSize = 14.000
- SpeedCounter.TextStrokeTransparency = 0.000
- SpeedCounter.TextWrapped = true
- Add.Name = "Add"
- Add.Parent = Main
- Add.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
- Add.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Add.BorderSizePixel = 5
- Add.Position = UDim2.new(0.759651423, 0, 0.55640626, 0)
- Add.Size = UDim2.new(0.240348548, 0, 0.438998699, 0)
- Add.Font = Enum.Font.GothamBlack
- Add.Text = "+"
- Add.TextColor3 = Color3.fromRGB(255, 255, 255)
- Add.TextScaled = true
- Add.TextSize = 14.000
- Add.TextStrokeTransparency = 0.000
- Add.TextWrapped = true
- Add.MouseButton1Click:Connect(function()
- SpeedCounter.Text += 1
- end)
- Subtract.Name = "Subtract"
- Subtract.Parent = Main
- Subtract.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
- Subtract.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Subtract.BorderSizePixel = 5
- Subtract.Position = UDim2.new(0, 0, 0.556406319, 0)
- Subtract.Size = UDim2.new(0.240348548, 0, 0.438998699, 0)
- Subtract.Font = Enum.Font.GothamBlack
- Subtract.Text = "-"
- Subtract.TextColor3 = Color3.fromRGB(255, 255, 255)
- Subtract.TextScaled = true
- Subtract.TextSize = 14.000
- Subtract.TextStrokeTransparency = 0.000
- Subtract.TextWrapped = true
- Subtract.MouseButton1Click:Connect(function()
- SpeedCounter.Text -= 1
- end)
- ApplySpeed.Name = "ApplySpeed"
- ApplySpeed.Parent = Main
- ApplySpeed.BackgroundColor3 = Color3.fromRGB(60, 255, 89)
- ApplySpeed.BorderColor3 = Color3.fromRGB(0, 0, 0)
- ApplySpeed.BorderSizePixel = 5
- ApplySpeed.Size = UDim2.new(0.999999881, 0, 0.460751772, 0)
- ApplySpeed.Font = Enum.Font.GothamBlack
- ApplySpeed.Text = "Apply Speed"
- ApplySpeed.TextColor3 = Color3.fromRGB(255, 255, 255)
- ApplySpeed.TextScaled = true
- ApplySpeed.TextSize = 14.000
- ApplySpeed.TextStrokeTransparency = 0.000
- ApplySpeed.TextWrapped = true
- ApplySpeed.MouseButton1Click:Connect(function()
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = SpeedCounter.Text
- end)
Add Comment
Please, Sign In to add comment