Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/vKhonshu/intro2/main/ui2"))()
- local NotifyLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/vKhonshu/intro/main/ui"))()
- NotifyLib.prompt('YukoWare - Speed (C)', 'Loading..', 5)
- NotifyLib.prompt('YukoWare', 'Enjoy ;) ;)', 5)
- plr = game:GetService('Players').LocalPlayer
- down = true
- function onButton1Down(mouse)
- down = true
- while down do
- if not down then break end
- local char = plr.Character
- char.HumanoidRootPart.Velocity = char.HumanoidRootPart.CFrame.lookVector * 190
- wait()
- end
- end
- function onButton1Up(mouse)
- down = false
- end
- function onSelected(mouse)
- mouse.KeyDown:connect(function(q) if q:lower()=="c"then onButton1Down(mouse)end end)
- mouse.KeyUp:connect(function(q) if q:lower()=="c"then onButton1Up(mouse)end end)
- end
- onSelected(game.Players.LocalPlayer:GetMouse())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement