wallop560

Untitled

Apr 30th, 2020
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. local HttpGet = game:GetService("HttpGet")
  2. local library = loadstring(game:HttpGet("https://pastebin.com/raw/CkyR8ePz", true))()
  3. local TweenService = game:GetService("TweenService")
  4. local mouse = game.Players.LocalPlayer:GetMouse()
  5. local w = library:CreateWindow('clicktp')
  6. w:Bind("Toggle key:", {
  7. flag = "toggle";
  8. kbonly = true;
  9. default = Enum.KeyCode.G;
  10. }, function()
  11. if mouse.Target ~= nil then
  12. local tweenInfo = TweenInfo.new(
  13. 0.5, -- Time
  14. Enum.EasingStyle.Linear, -- EasingStyle
  15. Enum.EasingDirection.Out, -- EasingDirection
  16. 0, -- RepeatCount (when less than zero the tween will loop indefinitely)
  17. false, -- Reverses (tween will reverse once reaching it's goal)
  18. 0 -- DelayTime
  19. )
  20. local tween = TweenService:Create(game.Players.LocalPlayer.Character.HumanoidRootPart, tweenInfo, {CFrame = mouse.Hit})
  21. tween:Play()
  22. end
  23. end)
Add Comment
Please, Sign In to add comment