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

GUIScript not working in player?

Asked by 9 years ago
Edited 8 years ago

Works in studio, but not in player. This is a script in ServerScriptService

01game.Players.PlayerAdded:connect(function(player)
02    local text = player.PlayerGui:WaitForChild("PlayerJoined").TextLabel
03    repeat
04 
05    text.Text = player.Name.." has joined the game!"
06    local posy = text.AbsolutePosition.Y
07    posy = posy + 1
08    text.Position = UDim2.new(0.4,0, 0, posy)
09    wait(0.015)
10    until
11    text.AbsolutePosition.Y == (0)
12    wait(3)
13    repeat 
14    local posy = text.AbsolutePosition.Y   
15    posy = posy - 1
View all 21 lines...
0
Additional notes of this script: FilteringEnabled is enabled. Script is inside a Server Script. M39a9am3R 3210 — 9y
0
How about trying to put an if statement on the very top(in the function) which goes something like this.... if player then KingLoneCat 2642 — 9y

1 answer

Log in to vote
0
Answered by 8 years ago

Put a statement at the top.

Ad

Answer this question