#how do i make a teleport button that teleports me

4 messages · Page 1 of 1 (latest)

autumn monolith
#

pls help lol thx

formal hare
#

Change the CFrame of the humanoidrootpart when the button is clickd

valid matrix
#
local button = script.Parent
button.MouseButton1Click:Connect(function()
    local plr = game.Players.LocalPlayer
    local char = plr.Character
    local hrp = char.HumanoidRootPart
    hrp.CFrame = CFrame.new(100, 100, 100) -- change your position
end)
formal hare