Advertisement
1_F0

Untitled

Sep 25th, 2021
391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. -- TP Bypass (feel free to use for other shit)
  2. loadstring(game:HttpGetAsync("https://pastebin.com/raw/HTV1cAkb"))
  3.  
  4. -- TP GUI - Library by wally
  5. local library = loadstring(game:HttpGet("https://pastebin.com/raw/eWKgbdix", true))()
  6. local w = library:CreateWindow('another demon game')
  7. w:Section('Made by Megumu')
  8. local npcs = {}
  9. local stores = {}
  10. for i,v in pairs(workspace.chatnpcs:GetChildren()) do
  11. table.insert(npcs, v.Name)
  12. end
  13. for i,v in pairs(workspace.Store:GetChildren()) do
  14. table.insert(stores, v.Name)
  15. end
  16. w:Dropdown("npcs", {
  17. location = _G;
  18. flag = "memes";
  19. list = npcs
  20. }, function(new)
  21. pcall(function()
  22. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.chatnpcs[new].PrimaryPart.CFrame
  23. end)
  24. end)
  25. w:Dropdown("items", {
  26. location = _G;
  27. flag = "memes";
  28. list = stores
  29. }, function(new)
  30. pcall(function()
  31. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.Store[new].CFrame
  32. end)
  33. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement