Advertisement
pa1nx9

Chipotle Boorito Maze GET BURRITO CODE

Nov 1st, 2021
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. local find_first_child = game.FindFirstChild
  2.  
  3. local replicated_storage = game:GetService("ReplicatedStorage")
  4.  
  5. local modules = find_first_child(replicated_storage, "Modules")
  6. local core = modules and find_first_child(modules, "Core")
  7. local networking = core and find_first_child(core, "Networking")
  8. networking = networking and require(networking)
  9.  
  10. local response = networking and networking:InvokeServer("GetCode")
  11.  
  12. if (response) then
  13. if (not response.success and response.message) then
  14. rconsoleerr(response.message)
  15. else
  16. rconsoleinfo(response)
  17. end
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement