Advertisement
soubrhomi

yay

Oct 26th, 2018
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.12 KB | None | 0 0
  1. local me = game.Players.LocalPlayer
  2. local BillboardGui = Instance.new("BillboardGui")
  3. local TextLabel = Instance.new("TextLabel")
  4.  
  5. BillboardGui.Parent = me.Character.Head
  6. BillboardGui.LightInfluence = 1
  7. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  8. BillboardGui.SizeOffset = Vector2.new(0, 1)
  9.  
  10. TextLabel.Parent = BillboardGui
  11. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  12. TextLabel.BackgroundTransparency = 1
  13. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  14. TextLabel.Font = Enum.Font.Garamond
  15. TextLabel.Text = "cringe radio"
  16. TextLabel.TextColor3 = Color3.new(1, 0, 0)
  17. TextLabel.TextSize = 35
  18. TextLabel.TextStrokeColor3 = Color3.new(0.45098, 1, 0)
  19. Mouse = me:GetMouse()
  20. local Activated = true
  21. Mouse.KeyDown:Connect(function(key)
  22.  key = key:lower()
  23.  if key == "q" then
  24. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = "50"
  25. wait(1)
  26. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = "40"
  27. wait(0.9)
  28. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = "30"
  29. wait(0.8)
  30. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = "20"
  31. wait(0.7)
  32. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = "16"
  33. end
  34. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement