Advertisement
KRNL_KEYS

Sexy sprint script

Jan 10th, 2021
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. --made by me
  2. -- sexy sprint script lol
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local TextLabel = Instance.new("TextLabel")
  7. local TextButton = Instance.new("TextButton")
  8. local TextButton_2 = Instance.new("TextButton")
  9.  
  10. --Properties:
  11.  
  12. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. Frame.Parent = ScreenGui
  16. Frame.BackgroundColor3 = Color3.fromRGB(85, 0, 255)
  17. Frame.Position = UDim2.new(0.393767715, 0, 0.222462207, 0)
  18. Frame.Size = UDim2.new(0, 100, 0, 225)
  19.  
  20. TextLabel.Parent = Frame
  21. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  22. TextLabel.Size = UDim2.new(0, 100, 0, 50)
  23. TextLabel.Font = Enum.Font.SourceSans
  24. TextLabel.Text = "Made by rupuli69#0196"
  25. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  26. TextLabel.TextScaled = true
  27. TextLabel.TextSize = 14.000
  28. TextLabel.TextWrapped = true
  29.  
  30. TextButton.Parent = Frame
  31. TextButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  32. TextButton.Position = UDim2.new(0, 0, 0.319999993, 0)
  33. TextButton.Size = UDim2.new(0, 100, 0, 50)
  34. TextButton.Font = Enum.Font.SourceSans
  35. TextButton.Text = "Sprint"
  36. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  37. TextButton.TextScaled = true
  38. TextButton.TextSize = 14.000
  39. TextButton.TextWrapped = true
  40.  
  41. TextButton_2.Parent = Frame
  42. TextButton_2.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  43. TextButton_2.Position = UDim2.new(0, 0, 0.688888907, 0)
  44. TextButton_2.Size = UDim2.new(0, 100, 0, 50)
  45. TextButton_2.Font = Enum.Font.SourceSans
  46. TextButton_2.Text = "Walk"
  47. TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  48. TextButton_2.TextScaled = true
  49. TextButton_2.TextSize = 14.000
  50. TextButton_2.TextWrapped = true
  51.  
  52. -- Scripts:
  53.  
  54. local function ATVVI_fake_script() -- TextButton.Script
  55. local script = Instance.new('Script', TextButton)
  56.  
  57. function Click(Mouse)
  58.  
  59. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 21
  60.  
  61. end
  62.  
  63. script.Parent.MouseButton1Down:connect(Click)
  64. end
  65. coroutine.wrap(ATVVI_fake_script)()
  66. local function EZAYGB_fake_script() -- TextButton_2.Script
  67. local script = Instance.new('Script', TextButton_2)
  68.  
  69. function Click(Mouse)
  70.  
  71. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  72.  
  73. end
  74.  
  75. script.Parent.MouseButton1Down:connect(Click)
  76. end
  77. coroutine.wrap(EZAYGB_fake_script)()
  78. local function ILTBY_fake_script() -- Frame.LocalScript
  79. local script = Instance.new('LocalScript', Frame)
  80.  
  81. script.Parent.Selectable = true
  82. script.Parent.Active = true
  83. script.Parent.Draggable = true
  84. end
  85. coroutine.wrap(ILTBY_fake_script)()
  86.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement