There were many errors in my script I had to fix up. I was capable of fixing all of the errors with no problem until this error came up: PlayerAdded is not a valid member of ServerScriptStorage
As a new scripter, I don't really know what that error message means, and I'm not sure what to do about it.
If someone could explain this error message and what I'm supposed to do about it, please help.
Here's the script:
01 | function rank() |
02 | if newPlayer:IsInGroup( 4266272 ) then |
03 | if Player:GetRankInGroup( 255 ) then |
04 | print ( "You are the owner, yay!" ) |
05 | else |
06 | print ( "You aren't the owner.." ) |
07 | end |
08 | end |
09 | end |
10 |
11 | script.Parent.PlayerAdded:connect(rank) |
I did this script for a little bit of experimenting and testing.
ServerScriptService
, there is no event called PlayerAdded
. You’re looking for the Players
service.1 | function rank(plr) |
2 | if plr:GetRankInGroup( 4266272 ) = = 255 then |
3 | print (plr.Name, "is the owner of the group!" ) |
4 | end |
5 | end |
6 |
7 | game:GetService( "Players" ).PlayerAdded:Connect(rank) |
replace script.Parent in the bottom of the script with game.Players Example
01 | function rank() |
02 | if newPlayer:IsInGroup( 4266272 ) then |
03 |
04 | if Player:GetRankInGroup( 255 ) then |
05 | print ( "You are the owner, yay!" ) |
06 | else |
07 | print ( "You aren't the owner.." ) |
08 | end |
09 | end |
10 |
11 | end |
12 |
13 |
14 | game.Players.PlayerAdded:connect(rank) |