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

Making Player spawn on team's spawn with team change GUI?

Asked by 5 years ago

Hello Im scripting this SCP game and I added a team select GUI. For some reason this sets the player's team but he doesn't spawn on the team's spawn points please help!

01local player = game.Players.LocalPlayer
02script.Parent.MouseButton1Click:Connect(function()
03    player.TeamColor = script.Parent.Information.TeamColor.Value
04    script.Parent.Parent.Parent:TweenPosition(UDim2.new(-1, 0,0, 0))
05    wait(1)
06    script.Parent.Parent.Parent.Visible = false
07    script.Parent.Parent.Parent.Parent.MainSelect.Position = UDim2.new(-1, 0,0, 0)
08    wait()
09    script.Parent.Parent.Parent.Parent.MainSelect.Visible = true
10    script.Parent.Parent.Parent.Parent.MainSelect:TweenPosition(UDim2.new(0,0,0,0))
11end)

1 answer

Log in to vote
0
Answered by 5 years ago

****If you have the same issue, it is due to it being a local script, use a global script.****

Ad

Answer this question