Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local plr = game.Players.LocalPlayer
- local hum = plr.Character.HumanoidRootPart
- local mouse = plr:GetMouse()
- local tool = Instance.new("Tool")
- tool.RequiresHandle = false
- tool.Name = "Click TP"
- tool.Parent = plr.Backpack
- tool.Activated:Connect(function()
- hum.CFrame = CFrame.new(mouse.Hit.Position)+Vector3.new(0,3,0)
- end)
Advertisement
Add Comment
Please, Sign In to add comment