Making a round-based game but it went sloppy and weird after I tested it?[Self-solved]
Asked by
6 years ago Edited 6 years ago
[CLOSED BY ME BECAUSE I FOUND A FIX BY C-FRAMING THE CHARACTERS INSTEAD OF LOADING THEM .. Thanks for trying to help me though.]
I can't explain what happened, but here's the script. I don't know if anyone can fix this "confusingness", but it just teleported me everywhere and just did weird stuff with teleporting and loading characters at random times. I can only explain what happened in a video.
01 | plr = script.Parent.Parent.Parent.Parent.Parent |
03 | local pickRandom = math.random( 1 , 2 ) |
04 | script.Parent.Text = "Choosing Map and Waiting for Players." |
06 | if pickRandom = = 1 then |
07 | script.Parent.Text = "Map Chosen: Obby" |
08 | for i,v in pairs (game.Players:GetPlayers()) do |
09 | v.TeamColor = BrickColor.new( "Black" ) |
12 | elseif pickRandom = = 2 then |
13 | script.Parent.Text = "Map Chosen: well this is a test soooo.." |
14 | for i,v in pairs (game.Players:GetPlayers()) do |
15 | v.TeamColor = BrickColor.new( "Really red" ) |
20 | for i,v in pairs (game.Players:GetPlayers()) do |
21 | v.TeamColor = BrickColor.new( "White" ) |