I need to make my game have admin only gear and player only gear. I need it to only let a of my choice have gear.
I didn't really get what you was meant so this might not be right, but did you even attempt this?
1 | function onPlayerEntered(player) |
2 | if string.lower(player.Name) = = string.lower( "NAMEHERE" ) then |
3 | game.Lighting.GEARNAMEHERE:Clone().Parent = player.Backpack |
4 | end |
5 | end |
1 | game.Players.PlayerAdded:connect( function (player) |
2 | if player.name = = "tkdrocks2017" then |
3 | print ( "GotThru" ) |
4 | game.Lighting.Test:Clone().Parent = game.Players.Player 1. Backpack |
5 | end |
6 | end ) |
This should work; let me know if it doesn't.
To test it in studio, use this code (Put it in StarterGui with a button):
1 | function onClicked() |
2 | game.Lighting.Test:Clone().Parent = game.Players.Player 1. Backpack |
3 | end |
4 |
5 | script.Parent.MouseButton 1 Down:connect(onClicked) |
The name of the tool I used was named "Test". Change that to the name of the tool of your liking.