Advertisement
KiroOnTop

Untitled

Jun 23rd, 2022
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/vKhonshu/intro2/main/ui2"))()
  2. local NotifyLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/vKhonshu/intro/main/ui"))()
  3. NotifyLib.prompt('YukoWare - Speed (C)', 'Loading..', 5)
  4. NotifyLib.prompt('YukoWare', 'Enjoy ;) ;)', 5)
  5.  
  6.  
  7. plr = game:GetService('Players').LocalPlayer
  8. down = true
  9.  
  10. function onButton1Down(mouse)
  11. down = true
  12. while down do
  13. if not down then break end
  14. local char = plr.Character
  15. char.HumanoidRootPart.Velocity = char.HumanoidRootPart.CFrame.lookVector * 190
  16. wait()
  17. end
  18. end
  19.  
  20. function onButton1Up(mouse)
  21. down = false
  22. end
  23.  
  24. function onSelected(mouse)
  25. mouse.KeyDown:connect(function(q) if q:lower()=="c"then onButton1Down(mouse)end end)
  26. mouse.KeyUp:connect(function(q) if q:lower()=="c"then onButton1Up(mouse)end end)
  27. end
  28. onSelected(game.Players.LocalPlayer:GetMouse())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement