Advertisement
Veno

ROBLOX Apocalypse Rising GUI [NORMAL SIZE]

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