Advertisement
karobloxYT

Untitled

Apr 30th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.45 KB | None | 0 0
  1. xin chào, đây là một loạt những thứ tôi đã thực sự nhanh chóng ném vào GUI, tạm biệt. Không có gì quá đặc biệt
  2. Mã số:
  3. local color = "Pastel brown"
  4. local Active = false
  5.  
  6. local Areas = {
  7. [1] = {Area = "Castle", Color = "Bright violet"},
  8. [2] = {Area = "Sand Kingdom", Color = "Moss"},
  9. [3] = {Area = "Haunted", Color = "Neon orange"},
  10. [4] = {Area = "Futureville", Color = "Ghost grey"},
  11. [5] = {Area = "Pirate Paradise", Color = "Pine Cone"},
  12. [6] = {Area = "Candy Land", Color = "Bright yellow"},
  13. [7] = {Area = "Sparkle Space", Color = "Ghost grey"},
  14. [8] = {Area = "Crystal Cavern", Color = "Black"}
  15. }
  16.  
  17. local check = game.ReplicatedStorage.Aero.AeroRemoteServices.PlayerDataService.GetStats:InvokeServer().Areas
  18. for i = 1, #Areas do
  19. if check[Areas[i].Area] then
  20. color = Areas[i].Color
  21. end
  22. end
  23.  
  24.  
  25. spawn(function()
  26. while wait()do
  27. if Active then
  28. for i,v in pairs(game.Workspace.Chests:GetChildren()) do
  29. if v:IsA("Model") and v:FindFirstChild("Base") and v.Base.BrickColor == BrickColor.new(color) then
  30. if Active then
  31. game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.ChestService.ConnectPlayer:FireServer(v.Name)
  32. game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.QuestService.Collect:InvokeServer("Damage")
  33. game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.QuestService.Collect:InvokeServer("HatLevel")
  34. end
  35. end
  36. end
  37. end
  38. end
  39. end)
  40. spawn(function()
  41. while wait() do
  42. if Active then
  43. for _,v in next, workspace.Rewards:GetDescendants() do
  44. if v.Parent == workspace.Rewards then
  45. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  46. end
  47. end
  48. end
  49. end
  50. end)
  51.  
  52. spawn(function()
  53. while wait(5) do
  54. if Active then
  55. game.ReplicatedStorage.Aero.AeroRemoteServices.TimedRewardService.Claim:InvokeServer(workspace.TimedRewards.Chest1)
  56. game.ReplicatedStorage.Aero.AeroRemoteServices.TimedRewardService.Claim:InvokeServer(workspace.TimedRewards.Chest2)
  57. end
  58. end
  59. end)
  60.  
  61.  
  62.  
  63. local gui = loadstring(game:HttpGet("https://pastebin.com/raw/j3TcLjYu", true))():CreateWindow({text = "Unbox Simulator"})
  64.  
  65. gui:AddButton("To Enchant", function()
  66. game.Players.LocalPlayer.Character:MoveTo(workspace.InteractionPoints.Enchant.Hitbox.Position)
  67. end)
  68.  
  69. gui:AddButton("TP to your Area", function()
  70. local as = game.ReplicatedStorage.Aero.AeroRemoteServices.PlayerDataService.GetStats:InvokeServer().Areas
  71. for i = 1, #Areas do
  72. if check[Areas[i].Area] then
  73. lastarea = Areas[i].Area
  74. end
  75. end
  76. game.Players.LocalPlayer.Character:MoveTo(workspace.Areas[lastarea].Floor.Position)
  77. end)
  78.  
  79. gui:AddToggle("Auto Farm", function(f)
  80. Active = not Active
  81. end)
  82.  
  83. local VirtualUser=game:service'VirtualUser';game:service'Players'.LocalPlayer.Idled:connect(function()VirtualUser:CaptureController()VirtualUser:ClickButton2(Vector2.new())end)
  84. thưởng thức và xin vui lòng chứng từ!
  85. Kịch bản bổ sung để đến Sparkle Space (Khu vực sau Candy Land và bạn cần 20Tril):
  86. Mã số:
  87. game.ReplicatedStorage.Aero.AeroRemoteServices.AreaService.BuyArea:FireServer("Sparkle Space")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement