ADVERTISEMENTREMOVE ADS
Tp tool universal
47,410 views
Universal script•
8 months ago

Script Preview
Description
i found it from pastebin
/____________/_______/_______/____
ADVERTISEMENTREMOVE ADS
33 Lines • 657 Bytes
bin=Instance.new("HopperBin",game:service'Players'.LocalPlayer.Backpack)
bin.Name = "Teleport"
function teleportPlayer(pos)
local player = game:service'Players'.LocalPlayer
if player == nil or player.Character == nil then return end
local char = player.Character
char:MoveTo(pos)
end
enabled = true
function onButton1Down(mouse)
if not enabled then
return
end
local player = game:service'Players'.LocalPlayer
if player == nil then return end
local cf = mouse.Hit
teleportPlayer(cf.p)
end
function onSelected(mouse)
mouse.Button1Down:connect(function() onButton1Down(mouse) end)
end
bin.Selected:connect(onSelected)
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS







Comments