Im Trying To Figure This Out And I Cant Seem To Find Any Solutions... Does Anyone Know How To Do This
have a clickdetector in a part and put in the following:
local players = game:GetService("Players") local ClickDetector = script.Parent ClickDetector.MouseClick:Connect(function() for i,v in pairs(workspace:GetChildren()) do if players:GetPlayerFromCharacter(v) then local hr = v:FindFirstChild("HumanoidRootPart") hr.CFrame = CFrame.new(79.8, 0.5, -63.6) end end end)