I have some teleporters in my game that I made but ever since roblox servers was down the teleporters act very weird on the server:
CLIENT:
SERVER:
Script:
script.Parent.Touched:Connect(function(hit)
if hit.Parent:FindFirstChild(“HumanoidRootPart”) then
hit.Parent.HumanoidRootPart.Position = script.Parent.Parent.Part.Position
end
end)