Advertisement
user1321

Untitled

Dec 18th, 2023 (edited)
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. local whitelist = {
  2. "Player1",
  3. "Player2",
  4. "Player3"
  5. }
  6.  
  7. game.Players.PlayerAdded:Connect(function(player)
  8. if table.find(whitelist, player.Name) then
  9. -- Load the exploit script here
  10. print("Loading exploit script for " .. player.Name)
  11. else
  12. -- Kick the player from the game
  13. game.Players.LocalPlayer:Kick(“You Are Not Whitelist Please Buy The Script And Let The Owner Whitelist You And try again”)
  14. end
  15. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement