ProlExploiter

Apocalypse Rising GUI

Nov 26th, 2017
514
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.21 KB | None | 0 0
  1. if game.CoreGui:FindFirstChild('APOC') then
  2. game.CoreGui.APOC:Destroy()
  3. end
  4.  
  5. game:GetObjects('rbxassetid://291330215')[1].Parent = game.CoreGui
  6.  
  7. wait(0.1)
  8.  
  9. local Player = game.Players.LocalPlayer
  10.  
  11. local apocGUI = game.CoreGui.APOC
  12. local MAIN = apocGUI.MAIN
  13.  
  14. local Open = apocGUI.Open
  15. local Exit = MAIN.Exit
  16.  
  17. Open:TweenPosition(UDim2.new(0,0,0,380), 'InOut', 'Quad', 0.5, true)
  18.  
  19. local Clip = true
  20. local ESP = false
  21. local Floating = false
  22. local Stamina = false
  23. local BoostReady = true
  24. local GodMode = false
  25.  
  26. -- Open and Exit --
  27.  
  28. Open.MouseButton1Down:connect(function()
  29. Open.Active = false
  30. Exit.Active = true
  31. Open:TweenPosition(UDim2.new(0,-30,0,380), 'InOut', 'Quad', 0.5, true)
  32. MAIN:TweenPosition(UDim2.new(0,10,0,420), 'InOut', 'Quad', 0.5, true)
  33. end)
  34.  
  35. Exit.MouseButton1Down:connect(function()
  36. Open.Active = true
  37. Exit.Active = false
  38. Open:TweenPosition(UDim2.new(0,0,0,380), 'InOut', 'Quad', 0.5, true)
  39. MAIN:TweenPosition(UDim2.new(0,-230,0,420), 'InOut', 'Quad', 0.5, true)
  40. end)
  41.  
  42. -- ESP --
  43.  
  44. local track = false
  45.  
  46. function Create(base, team)
  47. local espMAIN = apocGUI.ESP:Clone()
  48. local F = espMAIN.DOT
  49.  
  50. espMAIN.Parent = Player.PlayerGui
  51. espMAIN.Adornee = base
  52.  
  53. F.Visible = true
  54. end
  55.  
  56. function Clear()
  57. for _,v in pairs(Player.PlayerGui:children()) do
  58. if v.Name == "ESP" and v:IsA("BillboardGui") then
  59. v:Destroy()
  60. end
  61. end
  62. end
  63.  
  64. function Find()
  65. Clear()
  66. track = true
  67. spawn(function()
  68. while wait() do
  69. if track then
  70. Clear()
  71. for i,v in pairs(game.Players:players()) do
  72. if v.Character and v.Character.Head then
  73. Create(v.Character.Head, true)
  74. end
  75. end
  76. end
  77. wait(1)
  78. end
  79. end)
  80. end
  81.  
  82. -- Night Vision --
  83.  
  84. function NightVision()
  85. local nvGUI = Instance.new('ScreenGui', Player.PlayerGui)
  86. nvGUI.Name = 'NightVision'
  87. local nvMAIN = Instance.new('TextLabel', nvGUI)
  88. nvMAIN.Name = 'MAIN'
  89. nvMAIN.BackgroundColor = BrickColor.new(0,1,0)
  90. nvMAIN.BackgroundTransparency = 0.75
  91. nvMAIN.BorderSizePixel = 0
  92. nvMAIN.Size = UDim2.new(1,0,1,0)
  93. nvMAIN.Text = ''
  94.  
  95. for i,v in pairs(game.Players:GetChildren()) do
  96. if v and v.Character and not (v.Name == '' .. Player.Name) then
  97. for i,v in pairs(v.Character:GetChildren()) do
  98. if v:IsA('BasePart') then
  99. local nvBox = Instance.new('SelectionBox', nvMAIN)
  100. nvBox.Adornee = v
  101. nvBox.Color = BrickColor.new('Lime green')
  102. end
  103. end
  104. end
  105. end
  106. end
  107.  
  108. -- Main Functions --
  109.  
  110. -- NoClip --
  111.  
  112. MAIN.NoClip.MouseButton1Down:connect(function()
  113. MAIN.NoClip.Visible = false
  114. MAIN.Clip.Visible = true
  115. Clip = false
  116. wait(1)
  117. Player.PlayerGui.ChildAdded:connect(function(NC)
  118. delay(0,function()
  119. if NC.Name == 'NC' then
  120. NC:Destroy()
  121. end
  122. end)
  123. end)
  124. game:GetService('RunService').Stepped:connect(function()
  125. game.Workspace[Player.Name].Torso.CanCollide = Clip
  126. game.Workspace[Player.Name].Head.CanCollide = Clip
  127. end)
  128. game.Workspace[Player.Name].Torso.Changed:connect(function()
  129. game.Workspace[Player.Name].Torso.CanCollide = Clip
  130. game.Workspace[Player.Name].Head.CanCollide = Clip
  131. end)
  132. end)
  133.  
  134. MAIN.Clip.MouseButton1Down:connect(function()
  135. MAIN.Clip.Visible = false
  136. MAIN.NoClip.Visible = true
  137. Clip = true
  138. end)
  139.  
  140. -- ESP --
  141.  
  142. MAIN.ESPF.MouseButton1Down:connect(function()
  143. MAIN.ESPF.Visible = false
  144. MAIN.ESPT.Visible = true
  145. Find()
  146. ESP = true
  147. end)
  148.  
  149. MAIN.ESPT.MouseButton1Down:connect(function()
  150. MAIN.ESPT.Visible = false
  151. MAIN.ESPF.Visible = true
  152. Clear()
  153. track = false
  154. ESP = false
  155. end)
  156.  
  157. -- Floating --
  158.  
  159. MAIN.FloatF.MouseButton1Down:connect(function()
  160. MAIN.FloatF.Visible = false
  161. MAIN.FloatT.Visible = true
  162. Floating = true
  163. local Float = apocGUI.Float:Clone()
  164. Float.Parent = Player.Character
  165. Float.CFrame = Player.Character.Torso.CFrame * CFrame.new(0,-3.5,0)
  166. spawn(function()
  167. while wait(0.1) do
  168. if Player.Character:FindFirstChild('Float') then
  169. Float.CFrame = Player.Character.Torso.CFrame * CFrame.new(0,-3.5,0)
  170. else
  171. break
  172. end
  173. end
  174. end)
  175. end)
  176.  
  177. MAIN.FloatT.MouseButton1Down:connect(function()
  178. MAIN.FloatT.Visible = false
  179. MAIN.FloatF.Visible = true
  180. Floating = false
  181. if Player.Character:FindFirstChild('Float') then
  182. Player.Character.Float:Destroy()
  183. end
  184. end)
  185.  
  186. -- Thirst --
  187.  
  188. MAIN.Thirst.MouseButton1Down:connect(function()
  189. Player.playerstats.Thirst.Value = MAIN.Thirst.TNumber.Text
  190. end)
  191.  
  192. -- Hunger --
  193.  
  194. MAIN.Hunger.MouseButton1Down:connect(function()
  195. Player.playerstats.Hunger.Value = MAIN.Hunger.HNumber.Text
  196. end)
  197.  
  198. -- Health --
  199.  
  200. MAIN.Health.MouseButton1Down:connect(function()
  201. Player.Character.Humanoid.Health = MAIN.Hunger.HNumber.Text
  202. end)
  203.  
  204. -- Stamina --
  205.  
  206. MAIN.StaminaF.MouseButton1Down:connect(function()
  207. MAIN.StaminaF.Visible = false
  208. MAIN.StaminaT.Visible = true
  209. Stamina = true
  210. while wait() do
  211. if Stamina == true then
  212. Player.Backpack.GlobalFunctions.Stamina.Value = 100
  213. end
  214. end
  215. end)
  216.  
  217. MAIN.StaminaT.MouseButton1Down:connect(function()
  218. MAIN.StaminaT.Visible = false
  219. MAIN.StaminaF.Visible = true
  220. Stamina = false
  221. end)
  222.  
  223. -- Boost --
  224.  
  225. MAIN.Boost.MouseButton1Down:connect(function()
  226. MAIN.FloatF.Visible = true
  227. MAIN.FloatT.Visible = false
  228. Floating = false
  229. if Player.Character:FindFirstChild('Float') then
  230. Player.Character.Float:Destroy()
  231. end
  232. if BoostReady == true then
  233. Player.Character.HumanoidRootPart.Velocity = Player.Character.HumanoidRootPart.CFrame.lookVector * 500
  234. BoostReady = false
  235. MAIN.Boost.Text = '5'
  236. wait(1)
  237. MAIN.Boost.Text = '4'
  238. wait(1)
  239. MAIN.Boost.Text = '3'
  240. wait(1)
  241. MAIN.Boost.Text = '2'
  242. wait(1)
  243. MAIN.Boost.Text = '1'
  244. wait(1)
  245. BoostReady = true
  246. MAIN.Boost.Text = 'Boost'
  247. end
  248. end)
  249.  
  250. -- GodMode --
  251.  
  252. MAIN.GodModeF.MouseButton1Down:connect(function()
  253. MAIN.GodModeF.Visible = false
  254. MAIN.GodModeT.Visible = true
  255. GodMode = true
  256. if GodMode == true then
  257. repeat wait()
  258. Player.Character.Humanoid.Health = Player.Character.Humanoid.MaxHealth
  259. wait()
  260. Player.playerstats.Health.Value = Player.Character.Humanoid.Health
  261. until GodMode == false
  262. end
  263. end)
  264.  
  265. MAIN.GodModeT.MouseButton1Down:connect(function()
  266. MAIN.GodModeT.Visible = false
  267. MAIN.GodModeF.Visible = true
  268. GodMode = false
  269. end)
  270.  
  271. -- NoGrav --
  272.  
  273. MAIN.NoGrav.MouseButton1Down:connect(function()
  274. MAIN.NoGrav.Visible = false
  275. MAIN.Grav.Visible = true
  276. for i,v in pairs(Player.Character.Torso:GetChildren()) do
  277. if v.Name == 'NoGrav' and v:IsA('BodyForce') then
  278. v:Destroy()
  279. end
  280. end
  281. local BF = Instance.new('BodyForce', Player.Character.Torso)
  282. BF.Name = 'NoGrav'
  283. BF.Force = Vector3.new(0,4000,0)
  284. end)
  285.  
  286. MAIN.Grav.MouseButton1Down:connect(function()
  287. MAIN.Grav.Visible = false
  288. MAIN.NoGrav.Visible = true
  289. for i,v in pairs(Player.Character.Torso:GetChildren()) do
  290. if v.Name == 'NoGrav' and v:IsA('BodyForce') then
  291. v:Destroy()
  292. end
  293. end
  294. end)
  295.  
  296. -- Night Vision --
  297.  
  298. MAIN.NightVision.MouseButton1Down:connect(function()
  299. MAIN.NightVision.Visible = false
  300. MAIN.Vision.Visible = true
  301. NightVision()
  302. end)
  303.  
  304. MAIN.Vision.MouseButton1Down:connect(function()
  305. MAIN.Vision.Visible = false
  306. MAIN.NightVision.Visible = true
  307. for i,v in pairs(Player.PlayerGui:GetChildren()) do
  308. if v.Name == 'NightVision' and v:IsA('ScreenGui') then
  309. v:Destroy()
  310. end
  311. end
  312. end)
Add Comment
Please, Sign In to add comment