I have this huge chunk of code here,
if player.Team == "Murderer" then
for i,v in pairs(game.Teams["Murderer"]:GetPlayers()) do
v.Character.HumanoidRootPart.CFrame = CFrame.new(736.272, 7.139, -560.733)
end
end
elseif player.Team == "Sheriff" then
for i,v in pairs(game.Teams["Sheriff"]:GetPlayers()) do
v.Character.HumanoidRootPart.CFrame = CFrame.new(637.725, 7.144, -639.943)
end
And it wont move the HumanoidRootPart of both players whenever the game starts. Any help?