Because im using tekknikk lifts but u need a lift key card and im wondering is there a way only i can have the lift key on a obby and the others have to complete it
Your saying you have a device that is activated with a keycard and you want to make it so just your character spawns with it? If that's the case you can use this code.
01 | game.Players.PlayerAdded:connect( function (player) |
02 |
03 |
04 |
05 | if player.Name = = ( "Player1" ) then |
06 |
07 |
08 | KeyClone = game.ServerStorage.Key:Clone() |
09 |
10 |
11 | KeyClone.Parent = player.Backpack |
12 |
13 |
14 |
15 | end |
16 |
17 | end ) |