Advertisement
CaliberMag

obf

Mar 9th, 2020
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. function Contains(group, text)
  2. if string.find(group, text) then
  3. return true;
  4. else
  5. return false;
  6. end
  7. end
  8.  
  9. local Name = game:GetService('Players').LocalPlayer.Name;
  10. local ID = game:GetService('Players').LocalPlayer.userId;
  11. local Format = (Name..'|'..ID);
  12. local Whitelist = game:HttpGet('https://pastebin.com/raw/9SDbyu7e'); -- Format: NAME|USERID
  13.  
  14. warn('Whitelisting...')
  15. if Contains(Whitelist, Name) and Contains(Whitelist, ID) then
  16. print('Whitelisted');
  17. function FastTravel()
  18. loadstring(game:HttpGet("https://pastebin.com/raw/m81iSm1p", true))()
  19. warn("FOR THE LOVE OF GOD, PLEASE DON'T SPAM FAST TRAVEL TOO MUCH.")
  20. end
  21.  
  22. function ESP()
  23. loadstring(game:HttpGet("https://pastebin.com/raw/xuXPKHCw", true))()
  24. end
  25.  
  26. spawn(function() --Use "ESP()" or "FastTravel()" depending on which you need.
  27. FastTravel()
  28. end)
  29.  
  30. else
  31. print('Not whitelisted');
  32. game.Players.LocalPlayer:Kick("You aren't supposed to have this.")
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement