Advertisement
Nadds

ROBLOX Holo Map Loader

Apr 26th, 2016
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. local admins = {"YourUsername"}
  2.  
  3. game.Players.PlayerAdded:connect(function(nP)
  4. for _, v in pairs (admins) do
  5. if (nP.Name == v) or (nP:GetRankInGroup(1059444) >= 10) then
  6. nP.Chatted:connect(function(msg)
  7. if (msg:lower() == ":load mapname") then
  8. game.ServerStorage.MapName:Clone().Parent = game.Workspace
  9. elseif (msg:lower() == ":end mapname") then
  10. game.Workspace.MapName:remove()
  11. end
  12. end)
  13. end
  14. end
  15. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement