of     1   

tootoo123456
#180779815Thursday, December 31, 2015 11:06 PM GMT

if game.Players.NumPlayers~=0 then print("More than 0") game.Players.PlayerAdded:connect(function(player) local gui=Instance.new("ScreenGui", game:WaitForChild("StarterGui")) local label=Instance.new("TextLabel", gui) label.Position=UDim2.new(0,450,0,0) label.BackgroundColor3=Color3.new(200,255,0) label.TextScaled=true label.Size=UDim2.new(0,400,0,50) label.TextColor3=Color3.new(0,0,0) label.Text=player.Name.."has joined!" wait(3) label:Destroy() end) end More than 0 prints. Also, no erros in console. I don't think something is wrong. It's in a local script in startergui
LicePro
#180780017Thursday, December 31, 2015 11:09 PM GMT

Start server, start player with 2 people
tootoo123456
#180780357Thursday, December 31, 2015 11:13 PM GMT

Not to be rude, but you don't think I've tried that? I try everything I think I can do before posting on the forums.
tootoo123456
#180780559Thursday, December 31, 2015 11:16 PM GMT

More than 0 prints when i click f5 in Studio, but when I do start server and start two players, nothing prints. I've updated the script to have tweening but It still doesn't work. if game.Players.NumPlayers~=0 then print("More than 0") game.Players.PlayerAdded:connect(function(player) local gui=Instance.new("ScreenGui", game:WaitForChild("StarterGui")) local label=Instance.new("TextLabel", gui) label.Position=UDim2.new(0,450,0,-50) label.Size=UDim2.new(0,400,0,50) label:TweenPosition(UDim2.new(0,450,0,0), "Out", "Bounce", 2) label.BackgroundColor3=Color3.new(200,255,0) label.TextScaled=true label.TextColor3=Color3.new(0,0,0) label.Text=player.Name.."has joined!" wait(3) label:Destroy() end) end
LicePro
#180780677Thursday, December 31, 2015 11:17 PM GMT

Dang tootoo you've progressed in your scripting skills. Good job. You really are starting to script like a pro. No sarcasm.
tootoo123456
#180780977Thursday, December 31, 2015 11:21 PM GMT

But...But.. It's only been a week.. LOL Thanks :D
LicePro
#180781050Thursday, December 31, 2015 11:22 PM GMT

Np. I'm only an alt, but you might have seen me before on my main Metology. I remember when you posted about onTouch functions -.-

    of     1