Facebook
From Round Dolphin, 2 Years ago, written in Plain Text.
This paste is a reply to Re: Untitled from Fiery Gibbon - go back
Embed
Viewing differences between Re: Untitled and Re: Re: Untitled
mouse = game.Players.LocalPlayer:GetMouse()
tool = Instance.new("Tool")
tool.RequiresHandle = false
tool.Name = "Equip to Click TP"
"Click TP (Scriptonite Hub)"
tool.Activated:connect(function()
local pos = mouse.Hit+Vector3.new(0,2.5,0)
pos = CFrame.new(pos.X,pos.Y,pos.Z)
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
end)
tool.Parent = game.Players.LocalPlayer.Backpack