I was wondering if anyone could help me? I'm trying to create a script for 2 parts where if when you touch part1 and you own a gamepass, you will be teleported to part2 If you don't own the gamepass you won't be teleported. I've tried using a free model one but it just puts me on the roof.
Make a Sever script inside part1. Put this as the code
1 | script.Parent.Touched:Connect( function (touch) -- If player touchs part1 |
2 | local gamepass = 11111 -- Change this to your gamepass's ID |
3 |
4 | local plr = game.Players:GetPlayerFromCharacter(touch.Parent) --Get the player from their character since this is a server script |
5 | if game:GetService( "MarketplaceService" ):UserOwnsGamePassAsync(plr.UserId, gamepass) then -- Check if the player owns the gamepass |
6 | game.Workspace [ plr.Name ] .UpperTorso.CFrame = game.Workspace.Part 2. CFrame --If so Teleport them to Part2 which is the other part |
7 | end |
8 | end ) |