Hello my Question is How i can teleport a Player in a Local Script?
Thats my current Script:
local player = game.Players.LocalPlayer local owner = player.Name local frame = script.Parent:WaitForChild("Frame") frame.Button1.MouseButton1Click:Connect(function() *Teleport Player to a specific Positon* print(owner.." has clicked Button 1") end) frame.Button2.MouseButton1Click:Connect(function() *Teleport Player to a specific Positon* print(owner.." has clicked Button 2") end)