Kudzo

Untitled

Jan 31st, 2020
2,818
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. spawn(function()
  2. for island,island2 in pairs(game:GetService("Workspace").Portals:GetChildren())do
  3. if island2.Name == "Fire_Island" then
  4. island2.Name = (island .. "Fire")
  5. end
  6. end
  7. end)
  8.  
  9. local library = loadstring(game:HttpGet("https://pastebin.com/raw/eWKgbdix", true))()
  10. local w = library:CreateWindow('Gay Game')
  11. local w2 = library:CreateWindow("Islands")
  12. w:Toggle("Auto Swing", {flag = "toggle1"})
  13. w:Toggle("Auto buy Swords", {flag = "toggle2"})
  14. w:Toggle("Auto buy Backpacks", {flag = "toggle3"})
  15. w2:Button("Plains Island", function()
  16. pcall(function()
  17. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Portals["Plains_Island"]["2"].Teleport.CFrame
  18. end)
  19. end)
  20. w2:Button("Desert Island", function()
  21. pcall(function()
  22. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Portals["Desert_Island"]["2"].Teleport.CFrame
  23. end)
  24. end)
  25. w2:Button("Ice Island", function()
  26. pcall(function()
  27. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Portals["Ice_Island"]["2"].Teleport.CFrame
  28. end)
  29. end)
  30. w2:Button("Fire Island", function()
  31. pcall(function()
  32. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Portals["5Fire"]["2"].Teleport.CFrame
  33. end)
  34. end)
  35. w2:Button("Space Island", function()
  36. pcall(function()
  37. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Portals["Space_Island"]["2"].Teleport.CFrame
  38. end)
  39. end)
  40.  
  41. spawn(function()
  42. while wait()do
  43. if w.flags.toggle1 then
  44. pcall(function()
  45. game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").clickEvent:FireServer()
  46. end)
  47. end
  48. end
  49. end)
  50.  
  51. spawn(function()
  52. while wait()do
  53. if w.flags.toggle2 then
  54. pcall(function()
  55. game:GetService("ReplicatedStorage").Resources.RemoteEvents.ShopBuyAll:FireServer("Swords")
  56. end)
  57. end
  58. end
  59. end)
  60.  
  61. spawn(function()
  62. while wait()do
  63. if w.flags.toggle3 then
  64. pcall(function()
  65. game:GetService("ReplicatedStorage").Resources.RemoteEvents.ShopBuyAll:FireServer("Backpacks")
  66. end)
  67. end
  68. end
  69. end)
Advertisement
Add Comment
Please, Sign In to add comment