Advertisement
TurtleWars

Walkspeed Hub

Jul 27th, 2020 (edited)
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.61 KB | None | 0 0
  1. -- Created By: Turtle#4641
  2.  
  3. local SpeedHub = Instance.new("ScreenGui")
  4. local walkspeed = Instance.new("Frame")
  5. local title = Instance.new("TextLabel")
  6. local close = Instance.new("TextButton")
  7. local enterwalkspeed = Instance.new("TextBox")
  8. local activate = Instance.new("TextButton")
  9.  
  10. --Properties:
  11.  
  12. SpeedHub.Parent = game.CoreGui
  13.  
  14. game.StarterGui:SetCore("SendNotification", {
  15. Title = "Syandiar Walk Speed";
  16. Text = "Succesfully Executed!";
  17. Duration = 1.0;
  18. })
  19.  
  20. walkspeed.Name = "walkspeed"
  21. walkspeed.Parent = SpeedHub
  22. walkspeed.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  23. walkspeed.Position = UDim2.new(0.139573067, 0, 0.478705257, 0)
  24. walkspeed.Size = UDim2.new(0, 234, 0, 136)
  25. walkspeed.Visible = true
  26. walkspeed.Active = true
  27. walkspeed.Draggable = true
  28.  
  29. title.Name = "title"
  30. title.Parent = walkspeed
  31. title.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  32. title.BorderColor3 = Color3.fromRGB(27, 42, 53)
  33. title.Size = UDim2.new(0, 175, 0, 50)
  34. title.Font = Enum.Font.SciFi
  35. title.Text = "Walkspeed Hub"
  36. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  37. title.TextScaled = true
  38. title.TextSize = 14.000
  39. title.TextWrapped = true
  40.  
  41. close.Name = "close"
  42. close.Parent = walkspeed
  43. close.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  44. close.Position = UDim2.new(0.747863233, 0, 0, 0)
  45. close.Size = UDim2.new(0, 59, 0, 50)
  46. close.Font = Enum.Font.SourceSans
  47. close.Text = "X"
  48. close.TextColor3 = Color3.fromRGB(0, 0, 0)
  49. close.TextScaled = true
  50. close.TextSize = 14.000
  51. close.TextWrapped = true
  52. close.MouseButton1Down:connect(function()
  53. walkspeed.Visible = false
  54. end)
  55.  
  56. enterwalkspeed.Name = "enterwalkspeed"
  57. enterwalkspeed.Parent = walkspeed
  58. enterwalkspeed.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  59. enterwalkspeed.Position = UDim2.new(0, 0, 0.367647052, 0)
  60. enterwalkspeed.Size = UDim2.new(0, 234, 0, 50)
  61. enterwalkspeed.Font = Enum.Font.SourceSans
  62. enterwalkspeed.PlaceholderColor3 = Color3.fromRGB(255, 255, 255)
  63. enterwalkspeed.PlaceholderText = "Enter the Walkspeed here"
  64. enterwalkspeed.Text = ""
  65. enterwalkspeed.TextColor3 = Color3.fromRGB(255, 255, 255)
  66. enterwalkspeed.TextSize = 14.000
  67.  
  68. activate.Name = "activate"
  69. activate.Parent = walkspeed
  70. activate.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  71. activate.Position = UDim2.new(0, 0, 0.735294104, 0)
  72. activate.Size = UDim2.new(0, 234, 0, 36)
  73. activate.Font = Enum.Font.SourceSans
  74. activate.Text = "Activate"
  75. activate.TextColor3 = Color3.fromRGB(255, 255, 255)
  76. activate.TextScaled = true
  77. activate.TextSize = 14.000
  78. activate.TextWrapped = true
  79. activate.MouseButton1Down:Connect(function()
  80. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = enterwalkspeed.Text
  81. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement