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

VIP Tp script prints out an error, and does not tp the player?

Asked by
awfulszn 394 Moderation Voter
7 years ago
Edited 7 years ago

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:

01local gamepassId = 1109268370
02 
03function 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
12end
13 
14script.Parent.Touched:Connect(onTouch)

Any help is appreciated, thanks.

1 answer

Log in to vote
2
Answered by 7 years ago
Edited 7 years ago

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

01local gamepassId = 1109268370
02 
03function 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
13end
14 
15script.Parent.Touched:Connect(onTouch)
0
Oh, that worked perfectly! Thanks! awfulszn 394 — 7y
0
You're very welcome! :) BennyBoiOriginal 293 — 7y
Ad

Answer this question