I am attempting to make a VIP tp script, so that when a player with VIP touches the door, it will tp them to the position of the VIP room. Though this does not work, all it does is print out, 'Not a valid Player' on line 6.
Here is my script:
01 | local gamepassId = 1109268370 |
02 |
03 | function onTouch(hit) |
04 | local player = hit.Parent |
05 | local torso = player:FindFirstChild( "Torso" ) |
06 | if game:GetService( "GamePassService" ):PlayerHasPass(player, gamepassId) then |
07 | torso.CFrame = CFrame.new(script.Parent.Parent.VIPPlatform.Position) |
08 | wait() |
09 | else |
10 | return false |
11 | end |
12 | end |
13 |
14 | script.Parent.Touched:Connect(onTouch) |
Any help is appreciated, thanks.
When a player Touches something, it returns the character and not the player object. PlayerHasPass
is looking for the player object, not a model in Workspace. :P
01 | local gamepassId = 1109268370 |
02 |
03 | function onTouch(hit) |
04 | local character = hit.Parent |
05 | local player = game.Players:GetPlayerFromCharacter(hit.Parent) |
06 | local torso = character:FindFirstChild( "Torso" ) --EDIT: changed the variable used to character instead of player |
07 | if game:GetService( "GamePassService" ):PlayerHasPass(player, gamepassId) then |
08 | torso.CFrame = CFrame.new(script.Parent.Parent.VIPPlatform.Position) |
09 | wait() |
10 | else |
11 | return false |
12 | end |
13 | end |
14 |
15 | script.Parent.Touched:Connect(onTouch) |