How do I do this?

and in the players folder its done this
image


I tried it out, and it worked perfectly fine. How did you put the players into the folder with my updated script?

it works with 1 person for me as well. try it out with 2 people tho

and also i did this to add the players into the folder

i made it into a remote event so when the player presses yes on a gui it teleports them and adds them to the folder

I changed the for I, v script into this and it seemed to work

			local PlayersInFolder = game.ReplicatedStorage.Players:GetChildren()
			local number = #PlayersInFolder
			while number > 0 do
				wait()
				local PlayerOwnTP = Instance.new("Part")
				PlayerOwnTP.Parent = game.Workspace
				PlayerOwnTP.Name = "MainGameTP"
				PlayerOwnTP.Anchored = true
				PlayerOwnTP.CanCollide = false

				local StringPlayerVal = Instance.new("StringValue")
				StringPlayerVal.Name = "playerTPPart"
				StringPlayerVal.Parent = PlayerOwnTP
				StringPlayerVal.Value = ""
				number =- 1
			end
2 Likes

oh lemme test it out rq ty again

oh wow it worked thanks a lot man

1 Like

hey do you think you can help me with the rest of the system. (ive tried doing it my self but there is a lot of bugs)

Sure, I’ll try to help as much as I can, just ask.

2 Likes

ty so basically i kinda have a lot of questions.

1.) Why when the player wins and the push war starts again when you press yes. The system just breaks ig.

2.) how do i make it so after a couple of seconds if there is not a required players in the match then teleport them back.

I have more but i just have these main ones for now.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.