How do I make a tool in the player’s inventory teleport them to another place?
This will teleport the player somewhere when they hold the tool. Put this in a localscript in your tool:
local tool = script.Parent local playername = game.Players.LocalPlayer.Name local player = game.Players.LocalPlayer tool.Equipped:Connect(function() print("tool equiped") player.Character.PrimaryPart = player.Character.Torso player.Character:SetPrimaryPartCFrame(CFrame.new(X,Y,Z)) end)
set x y and z to the position you want