Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

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.

01plr = script.Parent.Parent.Parent.Parent.Parent
02while true do
03    local pickRandom = math.random(1, 2)
04    script.Parent.Text = "Choosing Map and Waiting for Players."
05    wait(20)
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")
10            v:LoadCharacter()
11        end
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")
View all 23 lines...
0
I'm assuming that this is a local script since you have it in a player. I'd recommend switching it over to the server if it isn't. Crazycat4360 115 — 6y
0
Why is player 10 script.Parent ‘s? User#19524 175 — 6y
0
Well, it turns out to be pretty useless. Since the StarterGUI is cloning itself to players, I made it script.Parent's. But you don't need to worry about that, because I never used it anyways. mudathir2007 157 — 6y

Answer this question