Advertisement
Guest User

Detour Example in lua

a guest
Mar 9th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.15 KB | None | 0 0
  1. local get_ip = game.GetIPAddress()
  2. local hide_ip = true
  3.  
  4. function game.GetIPAddress()
  5.     if hide_ip then return "HIDDEN" end
  6.     return get_ip()
  7. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement