The_Banana

speed

Apr 9th, 2022 (edited)
1,099
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Main = Instance.new("Frame")
  3. local TextLabel = Instance.new("TextLabel")
  4. local TextButton = Instance.new("TextButton")
  5.  
  6. --Properties:
  7.  
  8. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  9.  
  10. Main.Name = "Main"
  11. Main.Parent = ScreenGui
  12. Main.BackgroundColor3 = Color3.fromRGB(39, 15, 245)
  13. Main.Position = UDim2.new(0.363293529, 0, 0.28638497, 0)
  14. Main.Size = UDim2.new(0, 300, 0, 154)
  15. Main.Style = Enum.FrameStyle.ChatRed
  16.  
  17. TextLabel.Parent = Main
  18. TextLabel.BackgroundColor3 = Color3.fromRGB(17, 1, 1)
  19. TextLabel.BackgroundTransparency = 1.000
  20. TextLabel.Position = UDim2.new(-0.025588274, 0, -0.0890700519, 0)
  21. TextLabel.Size = UDim2.new(0, 250, 0, 30)
  22. TextLabel.Font = Enum.Font.SciFi
  23. TextLabel.Text = "Speed"
  24. TextLabel.TextColor3 = Color3.fromRGB(245, 16, 16)
  25. TextLabel.TextScaled = true
  26. TextLabel.TextSize = 12.000
  27. TextLabel.TextWrapped = true
  28.  
  29. TextButton.Parent = Main
  30. TextButton.BackgroundColor3 = Color3.fromRGB(17, 1, 1)
  31. TextButton.Position = UDim2.new(0.136470661, 0, 0.458670378, 0)
  32. TextButton.Size = UDim2.new(0, 200, 0, 58)
  33. TextButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  34. TextButton.Font = Enum.Font.SciFi
  35. TextButton.Text = "Activate"
  36. TextButton.TextColor3 = Color3.fromRGB(21, 235, 78)
  37. TextButton.TextScaled = true
  38. TextButton.TextSize = 14.000
  39. TextButton.TextWrapped = true
  40. TextButton.MouseButton1Down:connect(function()
  41. while true do wait() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100 end
  42. Walkspeed()
  43. end)
Add Comment
Please, Sign In to add comment