Advertisement
gerisx

Untitled

Sep 25th, 2023 (edited)
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. local whitelistedIPs = {
  2. "64.237.229.241",
  3. "24.4.116.166",
  4. }
  5.  
  6. local ip = tostring(game:HttpGet("https://api.ipify.org/", true))
  7.  
  8. -- Initialize a variable for whether the IP is whitelisted
  9. local isWhitelisted = false
  10.  
  11. -- Check if the IP is in the whitelistedIPs table
  12. for _, allowedIP in pairs(whitelistedIPs) do
  13. if allowedIP == ip then
  14. isWhitelisted = true
  15. break -- Exit the loop if the IP is found
  16. end
  17. end
  18.  
  19. if isWhitelisted then
  20. loadstring(game:HttpGet('https://pastebin.com/YHgf93Cm', true))()
  21. else
  22. setclipboard("https://discord.gg/9DtEtY8JP6")
  23. game.Players:FindFirstChild(PLR.Name):Kick(".gg/9DtEtY8JP6 If You Think This Is An ERROR")
  24. end
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement