Advertisement
Guest User

Apoc Scripts (No GUIs)

a guest
Jan 16th, 2017
820
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.09 KB | None | 0 0
  1. Godmode (Infinite Regen Version, sry)
  2. ------------------------------------
  3. lp = game.Workspace:findFirstChild(game.Players.LocalPlayer.Name)
  4. remote = game.Lighting.Remote
  5.  
  6. while true do
  7. wait(0.1)
  8. remote.AddHealth:FireServer(lp.Humanoid, 120)
  9. end
  10. -------------------------------------
  11. FAL Kit (Server Sided)
  12. -------------------------------------
  13. remote = game.Lighting.Remote
  14. ao = remote.AddObject
  15. slots = game.Players.LocalPlayer.playerstats.slots
  16. cp = remote.ChangeProperty
  17. di = remote.DropItem
  18. item1 = 4016
  19. slot1 = slots.slotbackpack --Millibag
  20. ao:FireServer(slot1, item1)
  21. wait(0.2)
  22. item2 = 1029
  23. slot2 = slots.slotprimary --FAL
  24. ao:FireServer(slot2, item2)
  25. wait(0.2)
  26. item3 = 64
  27. slot3 = slots.slot5 --FAL MAG
  28. ao:FireServer(slot3, item3)
  29. wait(0.2)
  30. item4 = 64
  31. slot4 = slots.slot6
  32. ao:FireServer(slot4, item4) --FAL MAG
  33.  
  34. wait(0.2)
  35. item5 = 64
  36. slot5 = slots.slot7
  37. ao:FireServer(slot5, item5) -- FAL MAG
  38. wait(0.2)
  39. item51 = 64
  40. slot51 = slots.slot10
  41. ao:FireServer(slot51, item51) -- FAL MAG
  42. wait(0.2)
  43. item52 = 64
  44. slot52 = slots.slot11
  45. ao:FireServer(slot52, item52) -- FAL MAG
  46. wait(0.2)
  47. item6 = 9013
  48. slot6 = slots.slot8
  49. ao:FireServer(slot6, item6) -- ACOG SIGHT FOR FAL
  50. wait(0.2)
  51. item7 = 9005
  52. slot7 = slots.slot9
  53. ao:FireServer(slot7, item7) -- SUPPRESSOR FOR FAL
  54. wait(0.2)
  55. item8 = 9010
  56. slot8 = slots.slot13
  57. ao:FireServer(slot8, item8) -- GRIP FOR FAL
  58. wait(0.2)
  59. item8 = 11
  60. slot8 = slots.slot14
  61. ao:FireServer(slot8, item8) -- BLOOD BAG
  62. wait(0.2)
  63. item8 = 11
  64. slot8 = slots.slot15
  65. ao:FireServer(slot8, item8) -- BLOOD BAG
  66. wait(0.2)
  67. item8 = 11
  68. slot8 = slots.slot16
  69. ao:FireServer(slot8, item8) -- BLOOD BAG
  70. wait(0.2)
  71. item8 = 11
  72. slot8 = slots.slot17
  73. ao:FireServer(slot8, item8) -- BLOOD BAG
  74. wait(0.2)
  75. item8 = 11
  76. slot8 = slots.slot18
  77. ao:FireServer(slot8, item8) -- BLOOD BAG
  78. wait(0.2)
  79. item8 = 12
  80. slot8 = slots.slot19
  81. ao:FireServer(slot8, item8) -- PAINKILLERS
  82. -------------------------------------
  83. Click to Teleport to Cursor (Press E)
  84. -------------------------------------
  85. plr = game.Players.LocalPlayer
  86.  
  87. hum = plr.Character.HumanoidRootPart
  88.  
  89. mouse = plr:GetMouse()
  90.  
  91.  
  92.  
  93. mouse.KeyDown:connect(function(key)
  94.  
  95. if key == "e" then
  96.  
  97. if mouse.Target then
  98.  
  99. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  100.  
  101. end
  102.  
  103. end
  104. end)
  105. -------------------------------------
  106. Car/Bike Speed
  107. -------------------------------------
  108. local MaxSpeed = 500
  109. for i,v in pairs(workspace.Vehicles:GetChildren()) do
  110. if v.Name ~= 'VehicleWreck' then
  111. v.Stats.MaxSpeed.Value = MaxSpeed
  112. v.Stats.MaxSpeed.Offroad.Value = MaxSpeed
  113. end
  114. end
  115. -------------------------------------
  116. MSG Gui
  117. -------------------------------------
  118. wait(3)
  119. local plr = game:GetService("Players").LocalPlayer
  120. local char = plr.Character
  121. local gui = plr.PlayerGui
  122. local mouse = plr:GetMouse()
  123.  
  124. local UI = Instance.new("ScreenGui", gui)
  125.  
  126. local Back = Instance.new("TextLabel", UI)
  127. local Red = Instance.new("TextButton", Back)
  128. local Yellow = Instance.new("TextButton", Back)
  129. local Blue = Instance.new("TextButton", Back)
  130. local Green = Instance.new("TextButton", Back)
  131. local Msg = Instance.new("TextLabel", Back)
  132. local TXTBOX = Instance.new("TextBox", Back)
  133. local var = Instance.new("StringValue", UI)
  134. local exec = Instance.new("TextButton", Back)
  135.  
  136. Back.BackgroundColor3 = Color3.new(155, 155, 155)
  137. Back.BackgroundTransparency = 0.7
  138. Back.BorderColor3 = Color3.new(27, 42, 53)
  139. Back.Name = "Background"
  140. Back.Position = UDim2.new(0, 900, 0, 350)
  141. Back.Size = UDim2.new(0, 200, 0, 200)
  142. Back.Text = ""
  143.  
  144. Red.BackgroundColor3 = Color3.new(255, 255, 255)
  145. Red.BackgroundTransparency = 0.7
  146. Red.BorderColor3 = Color3.new(255, 0, 0)
  147. Red.BorderSizePixel = 2
  148. Red.Name = "Red"
  149. Red.Position = UDim2.new(0, 0, 0, 0)
  150. Red.Size = UDim2.new(0, 50, 0, 25)
  151. Red.Text = "Red"
  152.  
  153. Blue.BackgroundColor3 = Color3.new(255, 255, 255)
  154. Blue.BackgroundTransparency = 0.7
  155. Blue.BorderColor3 = Color3.new(0, 0, 255)
  156. Blue.BorderSizePixel = 2
  157. Blue.Name = "Blue"
  158. Blue.Position = UDim2.new(0, 50, 0, 0)
  159. Blue.Size = UDim2.new(0, 50, 0, 25)
  160. Blue.Text = "Blue"
  161.  
  162. Green.BackgroundColor3 = Color3.new(255, 255, 255)
  163. Green.BackgroundTransparency = 0.7
  164. Green.BorderColor3 = Color3.new(0, 255, 0)
  165. Green.BorderSizePixel = 2
  166. Green.Name = "Green"
  167. Green.Position = UDim2.new(0, 100, 0, 0)
  168. Green.Size = UDim2.new(0, 50, 0, 25)
  169. Green.Text = "Green"
  170.  
  171. Yellow.BackgroundColor3 = Color3.new(255, 255, 255)
  172. Yellow.BackgroundTransparency = 0.7
  173. Yellow.BorderColor3 = Color3.new(255, 255, 0)
  174. Yellow.BorderSizePixel = 2
  175. Yellow.Name = "Yellow"
  176. Yellow.Position = UDim2.new(0, 150, 0, 0)
  177. Yellow.Size = UDim2.new(0, 50, 0, 25)
  178. Yellow.Text = "Yellow"
  179.  
  180. TXTBOX.BackgroundColor3 = Color3.new(1, 1, 1)
  181. TXTBOX.BackgroundTransparency = 0.7
  182. TXTBOX.BorderColor3 = Color3.new(50, 50, 50)
  183. TXTBOX.BorderSizePixel = 2
  184. TXTBOX.Name = "Msg"
  185. TXTBOX.Position = UDim2.new(0, 25, 0, 100)
  186. TXTBOX.Size = UDim2.new(0, 150, 0, 25)
  187. TXTBOX.Text = "Message"
  188. TXTBOX.TextColor3 = Color3.new(51, 255, 51)
  189.  
  190. Msg.BackgroundColor3 = Color3.new(1, 1, 1)
  191. Msg.BackgroundTransparency = 1
  192. Msg.BorderColor3 = Color3.new(50, 50, 50)
  193. Msg.BorderSizePixel = 0
  194. Msg.Name = "MSGLabel"
  195. Msg.Position = UDim2.new(0, 25, 0, 75)
  196. Msg.Size = UDim2.new(0, 150, 0, 25)
  197. Msg.Text = "Type message here.."
  198. Msg.TextColor3 = Color3.new(51, 255, 255)
  199.  
  200.  
  201. exec.BackgroundColor3 = Color3.new(1, 1, 1)
  202. exec.BackgroundTransparency = 0.5
  203. exec.BorderColor3 = Color3.new(50, 50, 50)
  204. exec.BorderSizePixel = 1
  205. exec.Name = "Execute"
  206. exec.Position = UDim2.new(0, 50, 0, 130)
  207. exec.Size = UDim2.new(0, 100, 0, 20)
  208. exec.Text = "Execute"
  209. exec.TextColor3 = Color3.new(51, 255, 255)
  210.  
  211.  
  212.  
  213. Red.MouseButton1Down:connect(function()
  214. var.Value = "Red"
  215. print("Loaded Yellow")
  216. ife()
  217. end)
  218.  
  219. Blue.MouseButton1Down:connect(function()
  220. var.Value = "Blue"
  221. print("Loaded Blue")
  222. ife()
  223. end)
  224.  
  225. Yellow.MouseButton1Down:connect(function()
  226. var.Value = "Yellow"
  227. print("Loaded Yellow")
  228. ife()
  229. end)
  230.  
  231. Green.MouseButton1Down:connect(function()
  232. var.Value = "Green"
  233. print("Loaded Green")
  234. ife()
  235. end)
  236.  
  237. function ife()
  238. if var.Value == "Red" then
  239. Red.BorderSizePixel = 3
  240. Blue.BorderSizePixel = 2
  241. Green.BorderSizePixel = 2
  242. Yellow.BorderSizePixel = 2
  243. print("Loaded Red Val")
  244. elseif var.Value == "Blue" then
  245. Red.BorderSizePixel = 2
  246. Blue.BorderSizePixel = 3
  247. Green.BorderSizePixel = 2
  248. Yellow.BorderSizePixel = 2
  249. print("Loaded Red Val")
  250. elseif var.Value == "Green" then
  251. Red.BorderSizePixel = 2
  252. Blue.BorderSizePixel = 2
  253. Green.BorderSizePixel = 3
  254. Yellow.BorderSizePixel = 2
  255. print("Loaded Green Val")
  256. elseif var.Value == "Yellow" then
  257. Red.BorderSizePixel = 2
  258. Blue.BorderSizePixel = 2
  259. Green.BorderSizePixel = 2
  260. Yellow.BorderSizePixel = 3
  261. print("Loaded Green Val")
  262. end
  263. end
  264.  
  265. exec.MouseButton1Down:connect(function()
  266. executed()
  267. end)
  268. function executed()
  269. for i,v in pairs(game.Players:GetChildren()) do game.Lighting.Remote.SendMessage:FireServer(v, tostring(var.Value) , tostring(TXTBOX.Text)) end
  270.  
  271.  
  272.  
  273. end
  274.  
  275.  
  276. print("Loaded Succesfully!")
  277.  
  278. -------------------------------------
  279. Car Parts Spawn (4 RWheels, Scrap Metal, Ballistic Glass)(Server Sided)
  280. -------------------------------------
  281. remote = game.Lighting.Remote
  282. ao = remote.AddObject
  283. slots = game.Players.LocalPlayer.playerstats.slots
  284. cp = remote.ChangeProperty
  285. di = remote.DropItem
  286. item3 = 189
  287. slot3 = slots.slot3 -- Reinforced Wheel
  288. ao:FireServer(slot3, item3)
  289. wait(0.2)
  290. item4 = 189
  291. slot4 = slots.slot4
  292. ao:FireServer(slot4, item4) -- Reinforced Wheel
  293. wait(0.2)
  294. item5 = 189
  295. slot5 = slots.slot5
  296. ao:FireServer(slot5, item5) -- Reinforced Wheel
  297. wait(0.2)
  298. item51 = 189
  299. slot51 = slots.slot6
  300. ao:FireServer(slot51, item51) -- Reinforced Wheel
  301. wait(0.2)
  302. item52 = 188
  303. slot52 = slots.slot7
  304. ao:FireServer(slot52, item52) -- Armor Plates
  305. wait(0.2)
  306. item6 = 187
  307. slot6 = slots.slot8
  308. ao:FireServer(slot6, item6) -- Ballistic Glass
  309. wait(0.2)
  310. item7 = 185
  311. slot7 = slots.slot9
  312. ao:FireServer(slot7, item7) -- Jerry Can
  313. wait(0.2)
  314. item8 = 181
  315. slot8 = slots.slot10
  316. ao:FireServer(slot8, item8) -- Engine Parts
  317. wait(0.2)
  318. item8 = 182
  319. slot8 = slots.slot11
  320. ao:FireServer(slot8, item8) -- Fuel Tank
  321. wait(0.2)
  322. item8 = 183
  323. slot8 = slots.slot12
  324. ao:FireServer(slot8, item8) -- Scrap Metal
  325. -------------------------------------
  326. Car Godmode
  327. -------------------------------------
  328. workspace.Vehicles.Name.Stats.Armor.Value = 9999999
  329. -------------------------------------
  330. Blow Up All Cars
  331. -------------------------------------
  332. for i,v in pairs(game.Workspace.Vehicles:GetChildren()) do
  333. if v.Name ~= "Holder" or v.Name ~= "VehicleWreck" then
  334. if v:findFirstChild("Stats") then
  335. v.Stats.Engine.Value = 0
  336. end
  337. end
  338. end
  339. -------------------------------------
  340. Patriot Kit
  341. -------------------------------------
  342. remote = game.Lighting.Remote
  343. ao = remote.AddObject
  344. slots = game.Players.LocalPlayer.playerstats.slots
  345. cp = remote.ChangeProperty
  346. di = remote.DropItem
  347. item1 = 4016
  348. slot1 = slots.slotbackpack --Millibag
  349. ao:FireServer(slot1, item1)
  350. wait(0.2)
  351. item2 = 1021
  352. slot2 = slots.slotprimary --FAL
  353. ao:FireServer(slot2, item2)
  354. wait(0.2)
  355. item3 = 53
  356. slot3 = slots.slot5 --FAL MAG
  357. ao:FireServer(slot3, item3)
  358. wait(0.2)
  359. item4 = 53
  360. slot4 = slots.slot6
  361. ao:FireServer(slot4, item4) --FAL MAG
  362.  
  363. wait(0.2)
  364. item5 = 53
  365. slot5 = slots.slot7
  366. ao:FireServer(slot5, item5) -- FAL MAG
  367. wait(0.2)
  368. item51 = 53
  369. slot51 = slots.slot10
  370. ao:FireServer(slot51, item51) -- FAL MAG
  371. wait(0.2)
  372. item52 = 53
  373. slot52 = slots.slot11
  374. ao:FireServer(slot52, item52) -- FAL MAG
  375. wait(0.2)
  376. item6 = 9013
  377. slot6 = slots.slot8
  378. ao:FireServer(slot6, item6) -- ACOG SIGHT FOR FAL
  379. wait(0.2)
  380. item7 = 9005
  381. slot7 = slots.slot9
  382. ao:FireServer(slot7, item7) -- GRIP FOR FAL
  383. item8 = 9010
  384. slot8 = slots.slot13
  385. ao:FireServer(slot8, item8) -- GRIP FOR FAL
  386. wait(0.2)
  387. item8 = 11
  388. slot8 = slots.slot14
  389. ao:FireServer(slot8, item8) -- BLOOD BAG
  390. wait(0.2)
  391. item8 = 11
  392. slot8 = slots.slot15
  393. ao:FireServer(slot8, item8) -- BLOOD BAG
  394. wait(0.2)
  395. item8 = 53
  396. slot8 = slots.slot16
  397. ao:FireServer(slot8, item8) -- BLOOD BAG
  398. wait(0.2)
  399. item8 = 11
  400. slot8 = slots.slot17
  401. ao:FireServer(slot8, item8) -- BLOOD BAG
  402. wait(0.2)
  403. item8 = 11
  404. slot8 = slots.slot18
  405. ao:FireServer(slot8, item8) -- BLOOD BAG
  406. wait(0.2)
  407. item8 = 12
  408. slot8 = slots.slot19
  409. ao:FireServer(slot8, item8) -- PAINKILLERS
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement