RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make it so the player can teleport by just clicking t"
-- local script local player = game.Players.LocalPlayer local mouse = player:GetMouse() mouse.KeyDown:Connect(function(key) if key == "t" then local pos = mouse.Hit.p player.Character.HumanoidRootPart.CFrame = CFrame.new(pos) end end)