Advertisement
karloxase

Walkspeed GUI

Apr 1st, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. --Made By Karloxase
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local Speed = Instance.new("Frame")
  4. local TextLabel = Instance.new("TextLabel")
  5. local Wspeed = Instance.new("TextButton")
  6. local Nspeed = Instance.new("TextButton")
  7. local TextLabel_2 = Instance.new("TextLabel")
  8. local Close = Instance.new("TextButton")
  9.  
  10. --Properties:
  11.  
  12. ScreenGui.Parent = game.CoreGui
  13.  
  14. Speed.Name = "Speed"
  15. Speed.Parent = ScreenGui
  16. Speed.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  17. Speed.Position = UDim2.new(0.0579243749, 0, 0.687960684, 0)
  18. Speed.Size = UDim2.new(0, 154, 0, 201)
  19. Speed.Active = true
  20. Speed.Draggable = false
  21.  
  22. TextLabel.Parent = Speed
  23. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  24. TextLabel.Size = UDim2.new(0, 154, 0, 20)
  25. TextLabel.Font = Enum.Font.GothamSemibold
  26. TextLabel.Text = "Speed GUI"
  27. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  28. TextLabel.TextSize = 14.000
  29.  
  30. Wspeed.Name = "Wspeed"
  31. Wspeed.Parent = Speed
  32. Wspeed.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  33. Wspeed.Position = UDim2.new(0, 0, 0.208955243, 0)
  34. Wspeed.Size = UDim2.new(0, 154, 0, 50)
  35. Wspeed.Font = Enum.Font.GothamSemibold
  36. Wspeed.Text = "Walkspeed 100"
  37. Wspeed.TextColor3 = Color3.fromRGB(0, 0, 0)
  38. Wspeed.TextSize = 15.000
  39. Wspeed.MouseButton1Down:connect(function()
  40. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  41. end)
  42.  
  43. Nspeed.Name = "Nspeed"
  44. Nspeed.Parent = Speed
  45. Nspeed.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  46. Nspeed.Position = UDim2.new(0, 0, 0.537313402, 0)
  47. Nspeed.Size = UDim2.new(0, 154, 0, 50)
  48. Nspeed.Font = Enum.Font.GothamSemibold
  49. Nspeed.Text = "Normal Walkspeed"
  50. Nspeed.TextColor3 = Color3.fromRGB(0, 0, 0)
  51. Nspeed.TextSize = 14.000
  52. Nspeed.MouseButton1Down:connect(function()
  53. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  54. end)
  55.  
  56. TextLabel_2.Parent = Speed
  57. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  58. TextLabel_2.Position = UDim2.new(0, 0, 0.935323358, 0)
  59. TextLabel_2.Size = UDim2.new(0, 154, 0, 13)
  60. TextLabel_2.Font = Enum.Font.GothamSemibold
  61. TextLabel_2.Text = "Made By Karloxase"
  62. TextLabel_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  63. TextLabel_2.TextSize = 14.000
  64.  
  65. Close.Name = "Close"
  66. Close.Parent = Speed
  67. Close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  68. Close.Position = UDim2.new(0.844155848, 0, 0, 0)
  69. Close.Size = UDim2.new(0, 24, 0, 20)
  70. Close.Font = Enum.Font.GothamSemibold
  71. Close.Text = "X"
  72. Close.TextColor3 = Color3.fromRGB(0, 0, 0)
  73. Close.TextSize = 14.000
  74. Close.MouseButton1Down:connect(function()
  75. Speed.Visible = false
  76. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement