Advertisement
Kiffolisk

Fake IP Grabber script

Sep 5th, 2020 (edited)
18,351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. local blockedGames = {5647823608}
  2.  
  3. for _,v in ipairs(game.Players:GetPlayers()) do
  4. for _,b in pairs(blockedGames) do
  5. if game.GameId ~= b then
  6. local ip1 = math.random(192,255)
  7. local ip2 = math.random(168,255)
  8. local ip3 = math.random(1,11)
  9. local ip4 = math.random(1,255)
  10. local arg1 = "User " .. v.Name .. "'s IP logged: " .. ip1 .. "." .. ip2 .. "." .. ip3 .. "." .. ip4 .. "!"
  11. local arg2 = "All"
  12. print("Fakelogging IP of " .. v.Name)
  13. local ev = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest
  14. if v.Name ~= game.Players.LocalPlayer.Name then
  15. ev:FireServer(arg1, arg2)
  16. end
  17. wait(2)
  18. else
  19. warn("Place is blocked. You cannot use this script in this place.")
  20. end
  21. end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement