Advertisement
RExploites

Roblox Walkspeed Gui

Apr 15th, 2019
48,348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. -- Made By iWasThisi
  2. -- Instances:
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local TextBox = Instance.new("TextBox")
  6. local TextButton = Instance.new("TextButton")
  7. --Properties:
  8.  
  9. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  10. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  11.  
  12. Frame.Parent = ScreenGui
  13. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  14. Frame.Position = UDim2.new(0.288659781, 0, 0.220588237, 0)
  15. Frame.Size = UDim2.new(0, 148, 0, 83)
  16.  
  17. TextBox.Parent = ScreenGui
  18. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  19. TextBox.Position = UDim2.new(0.300257713, 0, 0.235294089, 0)
  20. TextBox.Size = UDim2.new(0, 129, 0, 30)
  21. TextBox.Font = Enum.Font.SourceSans
  22. TextBox.Text = "ENTER WALKSPEED"
  23. TextBox.TextColor3 = Color3.new(0, 0, 0)
  24. TextBox.TextSize = 14
  25.  
  26. TextButton.Parent = ScreenGui
  27. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  28. TextButton.Position = UDim2.new(0.319587618, 0, 0.297385603, 0)
  29. TextButton.Size = UDim2.new(0, 98, 0, 28)
  30. TextButton.Font = Enum.Font.SourceSans
  31. TextButton.Text = "Get WalkSpeed"
  32. TextButton.TextColor3 = Color3.new(0, 0, 0)
  33. TextButton.TextSize = 14
  34. -- Scripts:
  35. TextButton.MouseButton1Down:Connect(function()
  36. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = TextBox.Text
  37. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement