Advertisement
Guest User

Untitled

a guest
Jan 19th, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.28 KB | None | 0 0
  1. -- Fixed Version By Memedog#8352
  2. -- Head Developer nhathuypopo_YT#7169
  3. local NewGUI = Instance.new("ScreenGui")
  4. local GUI = Instance.new("Frame")
  5. local AUTOFARM = Instance.new("TextButton")
  6. local AUTOREBIRTH = Instance.new("TextButton")
  7. local AUTOREBIRTH100 = Instance.new("TextButton")
  8. local AUTOSELL = Instance.new("TextButton")
  9. local ANTIKICK = Instance.new("TextButton")
  10. local REMOVE = Instance.new("TextButton")
  11. NewGUI.Name = "New GUI"
  12. NewGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13. NewGUI.ResetOnSpawn = false
  14.  
  15. GUI.Name = "GUI"
  16. GUI.Parent = NewGUI
  17. GUI.BackgroundColor3 = Color3.new(1, 1, 1)
  18. GUI.BackgroundTransparency = 0.40000000596046
  19. GUI.Position = UDim2.new(0.0640569478, 0, 0.280442804, 0)
  20. GUI.Size = UDim2.new(0, 350, 0, 174)
  21. GUI.SizeConstraint = Enum.SizeConstraint.RelativeXX
  22. GUI.Selectable = true
  23. GUI.Active= true
  24. GUI.Draggable = true
  25.  
  26. AUTOFARM.Name = "AUTO FARM"
  27. AUTOFARM.Parent = GUI
  28. AUTOFARM.BackgroundColor3 = Color3.new(0, 1, 1)
  29. AUTOFARM.BackgroundTransparency = 0.40000000596046
  30. AUTOFARM.BorderColor3 = Color3.new(1, 1, 1)
  31. AUTOFARM.Position = UDim2.new(0.0492357463, 0, 0.0419052243, 0)
  32. AUTOFARM.Size = UDim2.new(0, 82, 0, 34)
  33. AUTOFARM.Font = Enum.Font.SourceSans
  34. AUTOFARM.Text = "AUTO FARM"
  35. AUTOFARM.TextColor3 = Color3.new(0, 0, 0)
  36. AUTOFARM.TextSize = 14
  37. AUTOFARM.MouseButton1Click:connect(function()
  38. local Remote = game.ReplicatedStorage.Events.MagnetEvents['requestGrab']
  39. local Arguments = {
  40. [1] = "72000",
  41. [2] = game.ReplicatedStorage.Tools["Galaxy Rebirth Magnet"]
  42. }
  43. while wait() do
  44. Remote:FireServer(unpack(Arguments))
  45. end
  46. end)
  47.  
  48. AUTOREBIRTH.Name = "AUTO REBIRTH"
  49. AUTOREBIRTH.Parent = GUI
  50. AUTOREBIRTH.BackgroundColor3 = Color3.new(0, 1, 1)
  51. AUTOREBIRTH.BackgroundTransparency = 0.40000000596046
  52. AUTOREBIRTH.Position = UDim2.new(0.325971901, 0, 0.0419052243, 0)
  53. AUTOREBIRTH.Size = UDim2.new(0, 82, 0, 34)
  54. AUTOREBIRTH.Font = Enum.Font.SourceSans
  55. AUTOREBIRTH.Text = "AUTO REBIRTH 1"
  56. AUTOREBIRTH.TextColor3 = Color3.new(0, 0, 0)
  57. AUTOREBIRTH.TextSize = 14
  58. AUTOREBIRTH.MouseButton1Click:connect(function()
  59. while true do
  60. wait() --Change to nothing for FAST rebirths, 5 - 10 for lots of rebirth tokens and like 20 MAX for HIGH rebirth tokens but DO NOT Let your money pass around 7.5E Money. It will go to negatives.
  61. game:GetService("ReplicatedStorage").RebirthEvents.requestRebirth:FireServer()
  62. end
  63. end)
  64.  
  65. AUTOREBIRTH100.Name = "AUTO REBIRTH 100"
  66. AUTOREBIRTH100.Parent = GUI
  67. AUTOREBIRTH100.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  68. AUTOREBIRTH100.BackgroundTransparency = 0.40000000596046
  69. AUTOREBIRTH100.Position = UDim2.new(0.0492357425, 0, 0.340925455, 0)
  70. AUTOREBIRTH100.Size = UDim2.new(0, 178, 0, 44)
  71. AUTOREBIRTH100.Font = Enum.Font.SourceSans
  72. AUTOREBIRTH100.Text = "AUTO REBIRTH 100"
  73. AUTOREBIRTH100.TextColor3 = Color3.new(0, 0, 0)
  74. AUTOREBIRTH100.TextSize = 14
  75. AUTOREBIRTH100.MouseButton1Click:connect(function()
  76. while true do
  77. wait() --Change to nothing for FAST rebirths, 5 - 10 for lots of rebirth tokens and like 20 MAX for HIGH rebirth tokens but DO NOT Let your money pass around 7.5E Money. It will go to negatives.
  78. game:GetService("ReplicatedStorage").RebirthEvents.requestRebirthBoard:FireServer("5_100Rebirths")
  79. end
  80. end)
  81.  
  82. AUTOSELL.Name = "AUTO SELL"
  83. AUTOSELL.Parent = GUI
  84. AUTOSELL.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  85. AUTOSELL.BackgroundTransparency = 0.40000000596046
  86. AUTOSELL.Position = UDim2.new(0.0492357463, 0, 0.643805385, 0)
  87. AUTOSELL.Size = UDim2.new(0, 178, 0, 45)
  88. AUTOSELL.Font = Enum.Font.SourceSans
  89. AUTOSELL.Text = "AUTO SELL"
  90. AUTOSELL.TextColor3 = Color3.new(0, 0, 0)
  91. AUTOSELL.TextSize = 14
  92. AUTOSELL.MouseButton1Click:connect(function()
  93. while true do
  94. game:GetService('RunService').Stepped:wait()
  95. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(136.73712158203, 13.362461090088, -52.908908843994)
  96. wait()
  97. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(136.83712158203, 13.362461090088, -52.908908843994)
  98. wait()
  99. end
  100. end)
  101.  
  102. ANTIKICK.Name = "ANTIKICK"
  103. ANTIKICK.Parent = GUI
  104. ANTIKICK.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  105. ANTIKICK.BackgroundTransparency = 0.40000000596046
  106. ANTIKICK.Position = UDim2.new(0.58911556, 0, 0.0419051945, 0)
  107. ANTIKICK.Size = UDim2.new(0, 137, 0, 88)
  108. ANTIKICK.Font = Enum.Font.SourceSans
  109. ANTIKICK.Text = "ANTI KICk"
  110. ANTIKICK.TextColor3 = Color3.new(0, 0, 0)
  111. ANTIKICK.TextSize = 14
  112. ANTIKICK.MouseButton1Click:connect(function()
  113. local VirtualUser=game:service'VirtualUser'
  114. game:service'Players'.LocalPlayer.Idled:connect(function()
  115. VirtualUser:CaptureController()
  116. VirtualUser:ClickButton2(Vector2.new())
  117. end)
  118. end)
  119.  
  120. REMOVE.Name = "REMOVE"
  121. REMOVE.Parent = GUI
  122. REMOVE.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  123. REMOVE.BackgroundTransparency = 0.40000000596046
  124. REMOVE.Position = UDim2.new(0.602938652, 0, 0.642257154, 0)
  125. REMOVE.Size = UDim2.new(0, 132, 0, 45)
  126. REMOVE.Font = Enum.Font.SourceSans
  127. REMOVE.Text = "REMOVE Animation"
  128. REMOVE.TextColor3 = Color3.new(0, 0, 0)
  129. REMOVE.TextSize = 14
  130. REMOVE.MouseButton1Click:connect(function()
  131. local plr = game:GetService("Players").LocalPlayer
  132. local screengui = plr.PlayerGui.GameHUD
  133. screengui.EggHandler.Disabled = true
  134. screengui.Notifications.Handler.Disabled = true
  135. screengui.FullBackpack.Handler.Disabled = true
  136. screengui.HatHandler.Disabled = true
  137. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement