Advertisement
NINJASHYPERHACKERS

Universe Destruction Simulator

Feb 1st, 2019
972
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.92 KB | None | 0 0
  1. local AutoFarm = Instance.new("ScreenGui")
  2. local MainFrame = Instance.new("Frame")
  3. local TitleFrame = Instance.new("Frame")
  4. local TextLabel = Instance.new("TextLabel")
  5. local TextLabel_2 = Instance.new("TextLabel")
  6. local StopButton = Instance.new("TextButton")
  7. local StartButton = Instance.new("TextButton")
  8.  
  9. AutoFarm.Name = "AutoFarm"
  10. AutoFarm.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  11.  
  12. MainFrame.Name = "MainFrame"
  13. MainFrame.Parent = AutoFarm
  14. MainFrame.Active = true
  15. MainFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  16. MainFrame.BorderColor3 = Color3.new(0.207843, 0, 0)
  17. MainFrame.BorderSizePixel = 2
  18. MainFrame.Position = UDim2.new(0.0802469105, 0, 0.285012275, 0)
  19. MainFrame.Selectable = true
  20. MainFrame.Size = UDim2.new(0, 402, 0, 221)
  21.  
  22. TitleFrame.Name = "TitleFrame"
  23. TitleFrame.Parent = MainFrame
  24. TitleFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  25. TitleFrame.BorderColor3 = Color3.new(0.207843, 0, 0)
  26. TitleFrame.Size = UDim2.new(0, 402, 0, 48)
  27.  
  28. TextLabel.Parent = TitleFrame
  29. TextLabel.BackgroundColor3 = Color3.new(0, 0.952941, 1)
  30. TextLabel.BorderSizePixel = 0
  31. TextLabel.Size = UDim2.new(0, 402, 0, 48)
  32. TextLabel.Font = Enum.Font.Garamond
  33. TextLabel.Text = "Universe Destruction Simulator Auto-Farm"
  34. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  35. TextLabel.TextScaled = true
  36. TextLabel.TextSize = 20
  37. TextLabel.TextWrapped = true
  38.  
  39. TextLabel_2.Parent = TitleFrame
  40. TextLabel_2.BackgroundColor3 = Color3.new(0, 1, 1)
  41. TextLabel_2.BorderSizePixel = 0
  42. TextLabel_2.Position = UDim2.new(0, 0, 4.10416651, 0)
  43. TextLabel_2.Size = UDim2.new(0, 402, 0, 24)
  44. TextLabel_2.Font = Enum.Font.SourceSans
  45. TextLabel_2.Text = "Made by PhilipSCA"
  46. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  47. TextLabel_2.TextSize = 14
  48.  
  49. StopButton.Name = "StopButton"
  50. StopButton.Parent = MainFrame
  51. StopButton.BackgroundColor3 = Color3.new(1, 1, 1)
  52. StopButton.Position = UDim2.new(0.248756215, 0, 0.628959298, 0)
  53. StopButton.Size = UDim2.new(0, 202, 0, 26)
  54. StopButton.Font = Enum.Font.SourceSans
  55. StopButton.Text = "Stop Auto-Farm"
  56. StopButton.TextColor3 = Color3.new(0, 0, 0)
  57. StopButton.TextSize = 14
  58. StopButton.MouseButton1Down:connect(function()
  59. _G.combatfarm = false
  60. _G.start = false
  61. end)
  62.  
  63.  
  64. StartButton.Name = "StartButton"
  65. StartButton.Parent = MainFrame
  66. StartButton.BackgroundColor3 = Color3.new(1, 1, 1)
  67. StartButton.Position = UDim2.new(0.2487562, 0, 0.371040732, 0)
  68. StartButton.Size = UDim2.new(0, 202, 0, 26)
  69. StartButton.Font = Enum.Font.SourceSans
  70. StartButton.Text = "Start Auto-Farm"
  71. StartButton.TextColor3 = Color3.new(0, 0, 0)
  72. StartButton.TextSize = 14
  73.  
  74. StartButton.MouseButton1Down:connect(function()
  75.  
  76. local playername = game.Players.LocalPlayer.Name
  77. game.Workspace[playername].HumanoidRootPart.CFrame = CFrame.new(155.994614, 127.611755, -4.15816545)
  78.  
  79. _G.combatfarm = true -- turn on strengthFarm
  80.  
  81. while _G.combatfarm == true do
  82. local Remote = game.Workspace['Combat']
  83.  
  84. local Arguments = {
  85.  
  86. }
  87.  
  88. Remote:FireServer(unpack(Arguments))
  89. wait(0.5)
  90. local playername = game.Players.LocalPlayer.Name
  91. game.Workspace[playername].HumanoidRootPart.CFrame = CFrame.new(155.994614, 127.611755, -4.15816545)
  92. end
  93.  
  94. _G.start = true
  95.  
  96. while _G.start do
  97. wait(1)
  98. if(game.Players.LocalPlayer.Character.Humanoid.Health < 50) then
  99. local playername = game.Players.LocalPlayer.Name
  100. game.Workspace[playername].HumanoidRootPart.CFrame = CFrame.new(-238, 125, -15)
  101. _G.combatfarm = false
  102. end
  103. if(game.Players.LocalPlayer.Character.Humanoid.Health > 90) then
  104. local playername = game.Players.LocalPlayer.Name
  105. game.Workspace[playername].HumanoidRootPart.CFrame = CFrame.new(155.994614, 127.611755, -4.15816545)
  106. _G.combatfarm = true
  107. end
  108. end
  109.  
  110. end)
  111. function SCRIPT_RZWI75_FAKESCRIPT() -- MainFrame.LocalScript
  112. local script = Instance.new('LocalScript')
  113. script.Parent = MainFrame
  114. script.parent.Draggable = true
  115.  
  116. end
  117. coroutine.resume(coroutine.create(SCRIPT_RZWI75_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement