IWannaDieAsWell

Flying2Sim

Jun 10th, 2023
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.14 KB | None | 0 0
  1. local Lib = loadstring(game:HttpGet("https://raw.githubusercontent.com/Hosvile/Refinement/main/InfinitiveUI", true))()
  2.  
  3. -- Create Window
  4. -- Lib:CreateWindow(name, DefTab, WinSize, function)
  5. local Win = Lib:CreateWindow("ah", 1, 0.7, nil)
  6.  
  7. -- Create Tab
  8. local Tab, name = Win:CreateTab("Credits", function() warn(i) end)
  9.  
  10. Tab:CreateButton("Made By SomeRandomIdiot", function()
  11. print("idk what I'm doing mate")
  12. end)
  13.  
  14. Tab:CreateButton("Copy invite link", function()
  15. setclipboard("https://discord.gg/7s76RkCr6K")
  16. end)
  17.  
  18. local Tab, name = Win:CreateTab("Main", function() warn(i) end)
  19.  
  20. Tab:CreateButton("Ring 1", function()
  21. for i, child in ipairs(game:GetService("Workspace")["New Rings"]["1"]:GetChildren()) do
  22. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = child.CFrame
  23. task.wait(.25)
  24. end
  25. end)
  26.  
  27. Tab:CreateButton("Ring 2", function()
  28. for i, child in ipairs(game:GetService("Workspace")["New Rings"]["2"]:GetChildren()) do
  29. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = child.CFrame
  30. task.wait(.25)
  31. end
  32. end)
  33.  
  34. Tab:CreateButton("Diamonds", function()
  35. for i, child in ipairs(game:GetService("Workspace").Diamonds:GetChildren()) do
  36. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = child.CFrame
  37. task.wait(.1)
  38. end
  39. end)
  40.  
  41. Tab:CreateButton("Candies", function()
  42. for i, child in ipairs(game:GetService("Workspace").Candies:GetChildren()) do
  43. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = child.CFrame
  44. task.wait(.1)
  45. end
  46. end)
  47.  
  48. Tab:CreateButton("Go to Boosters", function()
  49. for i, child in ipairs(game:GetService("Workspace").Boosts:GetChildren()) do
  50. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = child.CFrame
  51. task.wait(.1)
  52. end
  53. end)
  54.  
  55. Tab:CreateButton("Bring Boosters", function()
  56. for i, child in ipairs(game:GetService("Workspace").Map.Boosts:GetChildren()) do
  57. child.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  58. task.wait(.1)
  59. end
  60. end)
  61.  
  62. local Tab, name = Win:CreateTab("Holos", function() warn(i) end)
  63.  
  64. Tab:CreateButton("Holo 4", function()
  65. for i, child in ipairs(game:GetService("Workspace")["New Holos"]["4"]:GetChildren()) do
  66. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = child.CFrame
  67. task.wait(.1)
  68. end
  69. end)
  70.  
  71. Tab:CreateButton("Holo 5", function()
  72. for i, child in ipairs(game:GetService("Workspace")["New Holos"]["5"]:GetChildren()) do
  73. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = child.CFrame
  74. task.wait(.1)
  75. end
  76. end)
  77.  
  78. Tab:CreateButton("Holo 6", function()
  79. for i, child in ipairs(game:GetService("Workspace")["New Holos"]["6"]:GetChildren()) do
  80. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = child.CFrame
  81. task.wait(.1)
  82. end
  83. end)
  84.  
  85. Tab:CreateButton("Holo 7", function()
  86. for i, child in ipairs(game:GetService("Workspace")["New Holos"]["7"]:GetChildren()) do
  87. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = child.CFrame
  88. task.wait(.1)
  89. end
  90. end)
  91.  
  92. Tab:CreateButton("Holo 8", function()
  93. for i, child in ipairs(game:GetService("Workspace")["New Holos"]["8"]:GetChildren()) do
  94. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = child.CFrame
  95. task.wait(.1)
  96. end
  97. end)
  98.  
  99. Tab:CreateButton("Holo 9", function()
  100. for i, child in ipairs(game:GetService("Workspace")["New Holos"]["9"]:GetChildren()) do
  101. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = child.CFrame
  102. task.wait(.1)
  103. end
  104. end)
  105.  
  106. Tab:CreateDropdown("Select Egg"..i, {{ eggs }}, true, function(egg)
  107. local buyegg = egg;
  108. end)
  109.  
  110. Tab:CreateToggle("Buy Selected Egg"..i, false, function(t)
  111. if t then
  112. getgenv().egg = true
  113. while getgenv().egg == true do
  114. local A_1 = 1
  115. local A_2 = buyegg
  116. local Event = game:GetService("ReplicatedStorage").Remotes.PetHandler
  117. Event:FireServer(A_1, A_2)
  118. task.wait()
  119. end
  120. else
  121. getgenv().egg = false
  122. end
  123. end)
  124.  
Advertisement
Add Comment
Please, Sign In to add comment