here is my script:
ran = math.random (1,2,3)
if ran = 1
then game.Lighting.MAP1:Clone().Parent = game.Workspace
wait (200)
game.Workspace.MAP1:remove()
elseif ran = 2 then game.Lighting.MAP2:Clone().Parent = game.Workspace
wait (200)
game.Workspace.MAP2:remove()
elseif ran = 3 then game.Lighting.MAP3:Clone().Parent = game.Workspace
wait (200)
game.Workspace.MAP3:remove()
whenever I run output says "line 2: then expected near '='"
WHAT DO I DO |