Advertisement
13ooeo

Untitled

Oct 12th, 2022
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.91 KB | None | 0 0
  1. --by thehipessquad
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local speed50 = Instance.new("TextButton")
  6. local speed100 = Instance.new("TextButton")
  7. local speed200 = Instance.new("TextButton")
  8. local TextLabel = Instance.new("TextLabel")
  9. local TextLabel_2 = Instance.new("TextLabel")
  10.  
  11. --Properties:
  12.  
  13. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  14. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15.  
  16. Frame.Parent = ScreenGui
  17. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  18. Frame.BackgroundTransparency = 0.450
  19. Frame.Position = UDim2.new(0, 0, 0.201365188, 0)
  20. Frame.Size = UDim2.new(0, 155, 0, 328)
  21.  
  22. speed50.Name = "speed50"
  23. speed50.Parent = Frame
  24. speed50.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  25. speed50.Position = UDim2.new(-0.148387089, 0, 0.164634153, 0)
  26. speed50.Size = UDim2.new(0, 178, 0, 50)
  27. speed50.Font = Enum.Font.SourceSans
  28. speed50.Text = "speed 50"
  29. speed50.TextColor3 = Color3.fromRGB(0, 0, 0)
  30. speed50.TextSize = 35.000
  31. speed50.TextWrapped = true
  32. speed50.MouseButton1Down:connect(function()
  33. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50
  34. end)
  35.  
  36. speed100.Name = "speed100"
  37. speed100.Parent = Frame
  38. speed100.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  39. speed100.Position = UDim2.new(-0.148387089, 0, 0.393292695, 0)
  40. speed100.Size = UDim2.new(0, 178, 0, 50)
  41. speed100.Font = Enum.Font.SourceSans
  42. speed100.Text = "speed 100"
  43. speed100.TextColor3 = Color3.fromRGB(0, 0, 0)
  44. speed100.TextSize = 32.000
  45. speed100.TextWrapped = true
  46. speed100.MouseButton1Down:connect(function()
  47. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  48. end)
  49.  
  50. speed200.Name = "speed200"
  51. speed200.Parent = Frame
  52. speed200.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  53. speed200.Position = UDim2.new(-0.148387089, 0, 0.652438998, 0)
  54. speed200.Size = UDim2.new(0, 178, 0, 50)
  55. speed200.Font = Enum.Font.SourceSans
  56. speed200.Text = "speed 200"
  57. speed200.TextColor3 = Color3.fromRGB(0, 0, 0)
  58. speed200.TextSize = 30.000
  59. speed200:connect(function()
  60. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 200
  61. end)
  62.  
  63. TextLabel.Parent = Frame
  64. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  65. TextLabel.BackgroundTransparency = 1.000
  66. TextLabel.Size = UDim2.new(0, 155, 0, 50)
  67. TextLabel.Font = Enum.Font.SourceSans
  68. TextLabel.Text = "Speed hacks "
  69. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  70. TextLabel.TextScaled = true
  71. TextLabel.TextSize = 14.000
  72. TextLabel.TextWrapped = true
  73.  
  74.  
  75. TextLabel_2.Parent = Frame
  76. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  77. TextLabel_2.BackgroundTransparency = 1.000
  78. TextLabel_2.Position = UDim2.new(0.0516129024, 0, 0.847561002, 0)
  79. TextLabel_2.Size = UDim2.new(0, 139, 0, 50)
  80. TextLabel_2.Font = Enum.Font.SourceSans
  81. TextLabel_2.Text = "by thehipessquad"
  82. TextLabel_2.TextColor3 = Color3.fromRGB(0, 170, 0)
  83. TextLabel_2.TextScaled = true
  84. TextLabel_2.TextSize = 14.000
  85. TextLabel_2.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement