Advertisement
GETFREEROBUX

Speed GUI (R15)

Feb 9th, 2022
1,653
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.84 KB | None | 0 0
  1. -- R15 Speed Script by me
  2.  
  3. -- Instances:
  4.  
  5. local ScreenGui = Instance.new("ScreenGui")
  6. local Frame = Instance.new("Frame")
  7. local Name = Instance.new("TextLabel")
  8. local Press = Instance.new("TextButton")
  9. local SpeedText = Instance.new("TextBox")
  10. local ResetSpeedText = Instance.new("TextLabel")
  11. local ResetSpeed = Instance.new("TextButton")
  12. local exit = Instance.new("TextButton")
  13.  
  14. --Properties:
  15.  
  16. ScreenGui.Parent = game.CoreGui
  17. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  18.  
  19. Frame.Parent = ScreenGui
  20. Frame.BackgroundColor3 = Color3.fromRGB(170, 170, 0)
  21. Frame.Position = UDim2.new(0.516949177, 0, 0.270353317, 0)
  22. Frame.Size = UDim2.new(0, 319, 0, 135)
  23. Frame.Active = true
  24. Frame.Draggable = true
  25.  
  26. Name.Name = "Name"
  27. Name.Parent = Frame
  28. Name.BackgroundColor3 = Color3.fromRGB(85, 255, 0)
  29. Name.BorderSizePixel = 0
  30. Name.Size = UDim2.new(0, 319, 0, 27)
  31. Name.Font = Enum.Font.RobotoMono
  32. Name.Text = "Birthday's Speed GUI (R15)"
  33. Name.TextColor3 = Color3.fromRGB(0, 0, 0)
  34. Name.TextSize = 14.000
  35.  
  36. Press.Name = "Press"
  37. Press.Parent = Frame
  38. Press.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  39. Press.BorderSizePixel = 0
  40. Press.Position = UDim2.new(0.47335422, 0, 0.688888788, 0)
  41. Press.Size = UDim2.new(0, 150, 0, 34)
  42. Press.Font = Enum.Font.SourceSans
  43. Press.Text = "Press"
  44. Press.TextColor3 = Color3.fromRGB(0, 0, 0)
  45. Press.TextSize = 14.000
  46.  
  47. SpeedText.Name = "SpeedText"
  48. SpeedText.Parent = Frame
  49. SpeedText.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  50. SpeedText.Position = UDim2.new(0.47335422, 0, 0.274074078, 0)
  51. SpeedText.Size = UDim2.new(0, 150, 0, 35)
  52. SpeedText.Font = Enum.Font.SourceSans
  53. SpeedText.Text = "15"
  54. SpeedText.TextColor3 = Color3.fromRGB(0, 0, 0)
  55. SpeedText.TextSize = 14.000
  56.  
  57. ResetSpeedText.Name = "ResetSpeedText"
  58. ResetSpeedText.Parent = Frame
  59. ResetSpeedText.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  60. ResetSpeedText.Position = UDim2.new(0.0219435729, 0, 0.274074078, 0)
  61. ResetSpeedText.Size = UDim2.new(0, 125, 0, 35)
  62. ResetSpeedText.Font = Enum.Font.SourceSans
  63. ResetSpeedText.Text = "Reset Speed (WIP)"
  64. ResetSpeedText.TextColor3 = Color3.fromRGB(0, 0, 0)
  65. ResetSpeedText.TextSize = 14.000
  66.  
  67. ResetSpeed.Name = "ResetSpeed"
  68. ResetSpeed.Parent = Frame
  69. ResetSpeed.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  70. ResetSpeed.BorderSizePixel = 0
  71. ResetSpeed.Position = UDim2.new(0.0219435729, 0, 0.696296155, 0)
  72. ResetSpeed.Size = UDim2.new(0, 125, 0, 33)
  73. ResetSpeed.Font = Enum.Font.SourceSans
  74. ResetSpeed.Text = "Reset"
  75. ResetSpeed.TextColor3 = Color3.fromRGB(0, 0, 0)
  76. ResetSpeed.TextSize = 14.000
  77.  
  78. exit.Name = "exit"
  79. exit.Parent = Frame
  80. exit.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  81. exit.Size = UDim2.new(0, 27, 0, 27)
  82. exit.Font = Enum.Font.SourceSans
  83. exit.Text = "X"
  84. exit.TextColor3 = Color3.fromRGB(0, 0, 0)
  85. exit.TextSize = 14.000
  86.  
  87. -- Scripts:
  88.  
  89. local function NARXEVK_fake_script() -- Press.LocalScript
  90.     local script = Instance.new('LocalScript', Press)
  91.  
  92.     script.Parent.MouseButton1Click:Connect(function()
  93.         local player = game.Players.LocalPlayer
  94.         local setspeed = script.Parent.Parent.SpeedText.Text
  95.         local hum = game.Workspace:WaitForChild(player.Name).Humanoid
  96.         if hum then
  97.             hum.WalkSpeed = setspeed
  98.         end
  99.     end)
  100. end
  101. coroutine.wrap(NARXEVK_fake_script)()
  102. local function ZRSMF_fake_script() -- ResetSpeed.LocalScript
  103.     local script = Instance.new('LocalScript', ResetSpeed)
  104.  
  105.     script.Parent.MouseButton1Click:Connect(function()
  106.        
  107.     end)
  108.      print("error")
  109.    
  110.     game.StarterGui:SetCore("SendNotification", {
  111.         Title = "RESET SPEED IS BROKEN.";
  112.         Text = "Error!";
  113.         Icon = "";
  114.         Duration = "7";
  115.     })
  116. end
  117. coroutine.wrap(ZRSMF_fake_script)()
  118. local function KZYKJK_fake_script() -- exit.close
  119.     local script = Instance.new('Script', exit)
  120.  
  121.     local function OnClicked()
  122.        script.Parent.Parent:Remove()
  123.     end
  124.    
  125.     script.Parent.MouseButton1Click:connect(OnClicked)
  126. end
  127. coroutine.wrap(KZYKJK_fake_script)()
  128.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement