nij55

Erig V2

May 14th, 2020
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.19 KB | None | 0 0
  1. --[[Created by Nij55
  2. This is ERIG V2
  3. The Original script is here: https://pastebin.com/JWXG3JdU
  4. ERIG V2 Script is here: https://pastebin.com/isnWJCXS
  5. --]]
  6. repeat wait(1) until game:IsLoaded()
  7. local plr = game.Players.LocalPlayer
  8. --Color variables for easy changes
  9. local Col1 = Color3.new(0, 0, 0)
  10. local Col2 = Color3.new(0.1647058823529412, 0.1647058823529412, 0.1647058823529412)
  11. local Col3 = Color3.new(1,1,1)
  12. --Surface GUI
  13. local main = Instance.new("ScreenGui")
  14. main.Parent = game.CoreGui
  15. main.ResetOnSpawn = false
  16. --Main Frame
  17. local F1 = Instance.new("Frame")
  18. F1.Parent = main
  19. F1.Size = UDim2.new(0.2, 0,0.6, 0)
  20. F1.AnchorPoint = Vector2.new(0,0)
  21. F1.Position = UDim2.new(-1,0,-1,0)
  22. main.Name = "ERIG"
  23. F1.Name = "TheFrame"
  24. F1.BackgroundColor3 = Col1
  25. F1.Draggable = true
  26. F1.Active = true
  27. F1.Selectable = true
  28. F1.BorderSizePixel = 0
  29. --Information Frame
  30. local F5 = Instance.new("Frame")
  31. F5.Parent = F1
  32. F5.Size = UDim2.new( 1, 0, 0.95, 0)
  33. F5.AnchorPoint = Vector2.new(0,0)
  34. F5.Position = UDim2.new(0,0,0.05,0)
  35. F5.Name = "InformationFrame"
  36. F5.BackgroundColor3 = Col2
  37. F5.BorderSizePixel = 0
  38. F5.BorderColor3 = Col3
  39. F5.ClipsDescendants = true
  40. F5.Active = true
  41. --Info Label
  42. local IL = Instance.new("TextLabel")
  43. IL.Parent = F5
  44. IL.Size = UDim2.new(0.8,0,0.6,0)
  45. IL.AnchorPoint = Vector2.new(0,0)
  46. IL.Position = UDim2.new(0.1,0,0.1,0)
  47. IL.BackgroundColor3 = Col1
  48. IL.BorderSizePixel = 1
  49. IL.TextScaled = true
  50. IL.Font = "GothamBold"
  51. IL.Text = "Erig V2 Created by Nij55. This is an all in one GUI for trolling that comes with lots of features including various Admin scripts, and game speicfic scripts."
  52. IL.TextColor3 = Col3
  53. IL.BorderColor3 = Col3
  54. local CL1 = Instance.new("TextButton")
  55. CL1.Parent = F5
  56. CL1.Size = UDim2.new(0.35,0,0.05,0)
  57. CL1.AnchorPoint = Vector2.new(0,0)
  58. CL1.Position = UDim2.new(0.1,0,0.75,0)
  59. CL1.BackgroundColor3 = Col1
  60. CL1.BorderSizePixel = 1
  61. CL1.TextScaled = true
  62. CL1.Name = "CL"
  63. CL1.Font = "GothamBold"
  64. CL1.Text = "Synaspe Copy Link"
  65. CL1.TextColor3 = Col3
  66. CL1.BorderColor3 = Col3
  67. CL1.MouseButton1Click:Connect(function()
  68. syn_clipboard_set("https://pastebin.com/isnWJCXS")
  69. CL1.Text = "Copyed!"
  70. wait(1)
  71. CL1.Text = "Synaspe Copy Link"
  72. end)
  73. local CS1 = Instance.new("TextButton")
  74. CS1.Parent = F5
  75. CS1.Size = UDim2.new(0.35,0,0.05,0)
  76. CS1.AnchorPoint = Vector2.new(0,0)
  77. CS1.Position = UDim2.new(0.55,0,0.75,0)
  78. CS1.BackgroundColor3 = Col1
  79. CS1.BorderSizePixel = 1
  80. CS1.TextScaled = true
  81. CS1.Name = "CS"
  82. CS1.Font = "GothamBold"
  83. CS1.Text = "Synaspe Copy Script"
  84. CS1.TextColor3 = Col3
  85. CS1.BorderColor3 = Col3
  86. CS1.MouseButton1Click:Connect(function()
  87. syn_clipboard_set("loadstring(game:HttpGet(('https://pastebin.com/raw/Y4sMattZ'),true))()")
  88. CS1.Text = "Copyed!"
  89. wait(1)
  90. CS1.Text = "Synaspe Copy Script"
  91. end)
  92. --Exit Button
  93. local Exit = Instance.new("TextButton")
  94. Exit.Parent = F1
  95. Exit.Name = "Exit_Button"
  96. Exit.Size = UDim2.new(0.05,0,0.05,0)
  97. Exit.AnchorPoint = Vector2.new(0,0)
  98. Exit.Position = UDim2.new(0, 0,0, 0)
  99. Exit.BackgroundTransparency = 1
  100. Exit.TextScaled = true
  101. Exit.Font = "GothamBold"
  102. Exit.Text = "X"
  103. Exit.TextColor3 = Col3
  104. --Exit Buttom Clicked
  105. Exit.MouseButton1Click:Connect(function()
  106. F1:TweenPosition(UDim2.new(-1,0,-1,0),'Out','Quart',3)
  107. wait(4)
  108. main:Destroy()
  109. script:Destroy()
  110. end)
  111. --"Others" Panel
  112. local F4 = Instance.new("Frame")
  113. F4.Parent = F1
  114. F4.Size = UDim2.new( 0.45, 0, 0.95, 0)
  115. F4.AnchorPoint = Vector2.new(0,0)
  116. F4.Position = UDim2.new(0.55,0,0.05,0)
  117. F4.Name = "SidePanel"
  118. F4.BackgroundColor3 = Col1
  119. F4.BorderSizePixel = 0
  120. F4.BorderColor3 = Col3
  121. F4.ClipsDescendants = true
  122. F4.Visible = false
  123. F4.ZIndex = 9
  124. local JB = Instance.new("TextButton")
  125. JB.Parent = F4
  126. JB.Size = UDim2.new(0.8,0,0.05,0)
  127. JB.AnchorPoint = Vector2.new(0,0)
  128. JB.Position = UDim2.new(0.1,0,0.025,0)
  129. JB.BackgroundColor3 = Col2
  130. JB.BorderSizePixel = 1
  131. JB.TextScaled = true
  132. JB.Name = "JAdmin"
  133. JB.Font = "GothamBold"
  134. JB.Text = "Jay Admin"
  135. JB.TextColor3 = Col3
  136. JB.BorderColor3 = Col3
  137. JB.ZIndex = 10
  138. JB.MouseButton1Click:Connect(function()
  139. loadstring(game:HttpGet(('https://pastebin.com/raw/zPtNSmuZ'),true))()
  140. end)
  141. local SB2 = Instance.new("TextButton")
  142. SB2.Parent = F4
  143. SB2.Size = UDim2.new(0.8,0,0.05,0)
  144. SB2.AnchorPoint = Vector2.new(0,0)
  145. SB2.Position = UDim2.new(0.1,0,0.1,0)
  146. SB2.BackgroundColor3 = Col2
  147. SB2.BorderSizePixel = 1
  148. SB2.TextScaled = true
  149. SB2.Name = "ScriptButton"
  150. SB2.Font = "GothamBold"
  151. SB2.Text = "Script Page"
  152. SB2.TextColor3 = Col3
  153. SB2.BorderColor3 = Col3
  154. SB2.ZIndex = 10
  155. --"Others" Button
  156. local B1 = Instance.new("ImageButton")
  157. B1.Parent = F1
  158. B1.Size = UDim2.new( 0.075, 0, 0.05, 0)
  159. B1.AnchorPoint = Vector2.new(0,0)
  160. B1.Position = UDim2.new(0.925,0,0,0)
  161. B1.Name = "Others"
  162. B1.BackgroundColor3 = Col1
  163. B1.BorderSizePixel = 0
  164. B1.ClipsDescendants = true
  165. B1.BackgroundTransparency = 1
  166. B1.Image = "rbxassetid://4802062532"
  167. B1.ImageColor3 = Col3
  168. local F4V = false
  169. --"Others" Button Clicked
  170. B1.MouseButton1Click:Connect(function()
  171. if F4V == false then
  172. F4V = true
  173. F4.Visible = true
  174. F4.Active = true
  175. else
  176. F4V = false
  177. F4.Visible = false
  178. F4.Active = false
  179. end
  180. end)
  181. --Maximize Button
  182. local F3 = Instance.new("Frame")
  183. F3.Parent = main
  184. F3.Size = UDim2.new(0.125, 0,0.03, 0)
  185. F3.AnchorPoint = Vector2.new(0,0)
  186. F3.Position = UDim2.new(-1,0,-1,0)
  187. F3.Name = "MaxFrame"
  188. F3.BackgroundColor3 = Color3.new(0, 0, 0)
  189. F3.Draggable = true
  190. F3.Selectable = true
  191. F3.BorderSizePixel = 0
  192. F3.ClipsDescendants = true
  193. F3.Visible = false
  194. F3.Active = false
  195. F3.Position = UDim2.new(0,0,0.8,0)
  196. local B2 = Instance.new("TextButton")
  197. B2.Parent = F3
  198. B2.Size = UDim2.new(0.8, 0,0.8, 0)
  199. B2.AnchorPoint = Vector2.new(0,0)
  200. B2.Position = UDim2.new(0.1,0,0.1,0)
  201. B2.Name = "MaxButton"
  202. B2.BackgroundColor3 = Color3.new(0, 0, 0)
  203. B2.BorderSizePixel = 0
  204. B2.ClipsDescendants = true
  205. B2.BackgroundColor3 = Col2
  206. B2.Font = "GothamBold"
  207. B2.TextScaled = "True"
  208. B2.TextColor3 = Col3
  209. B2.Text = "Maximize"
  210. local Exit2 = Instance.new("TextButton")
  211. Exit2.Parent = F3
  212. Exit2.Name = "Exit_Button"
  213. Exit2.Size = UDim2.new(0.1,0,1,0)
  214. Exit2.AnchorPoint = Vector2.new(0,0)
  215. Exit2.Position = UDim2.new(0,0,0,0)
  216. Exit2.BackgroundTransparency = 1
  217. Exit2.TextScaled = true
  218. Exit2.Font = "GothamBold"
  219. Exit2.Text = "X"
  220. Exit2.TextColor3 = Col3
  221. --Second Exit Buttom Clicked
  222. Exit2.MouseButton1Click:Connect(function()
  223. main:Destroy()
  224. script:Destroy()
  225. end)
  226. --Minimize Button
  227. local Min = Instance.new("TextButton")
  228. Min.Parent = F1
  229. Min.Name = "Min_Button"
  230. Min.Size = UDim2.new(0.05,0,0.05,0)
  231. Min.AnchorPoint = Vector2.new(0,0)
  232. Min.Position = UDim2.new(0.06,0,0,0)
  233. Min.BackgroundTransparency = 1
  234. Min.TextScaled = true
  235. Min.Font = "GothamBold"
  236. Min.Text = "_"
  237. Min.TextColor3 = Col3
  238. Min.MouseButton1Click:Connect(function()
  239. F1.Visible = false
  240. F1.Active = false
  241. F3.Visible = true
  242. F3.Active = true
  243. B2.MouseButton1Click:Connect(function()
  244. F1.Visible = true
  245. F1.Active = true
  246. F3.Visible = false
  247. F3.Active = false
  248. end)
  249. end)
  250. --ERIG Tittle
  251. local L1 = Instance.new("ImageLabel")
  252. L1.Parent = F1
  253. L1.Name = "ERIG_Tittle"
  254. L1.Size = UDim2.new(0.2,0,0.05,0)
  255. L1.Position = UDim2.new(0.4,0,0,0)
  256. L1.BackgroundTransparency = 1
  257. L1.Image = "http://www.roblox.com/asset/?id=4732590440"
  258. --Secondary Frame
  259. local F2 = Instance.new("ScrollingFrame")
  260. F2.Parent = F1
  261. F2.Size = UDim2.new( 1, 0, 0.95, 0)
  262. F2.AnchorPoint = Vector2.new(0,0)
  263. F2.Position = UDim2.new(0,0,0.05,0)
  264. F2.Name = "SecondaryFrame"
  265. F2.BackgroundColor3 = Col2
  266. F2.BorderSizePixel = 0
  267. F2.BorderColor3 = Col3
  268. F2.ClipsDescendants = true
  269. F2.Visible = false
  270. F2.Active = false
  271. --Other Buttons
  272. local AB = Instance.new("TextButton")
  273. AB.Parent = F2
  274. AB.Size = UDim2.new(0.25,0,0.05,0)
  275. AB.AnchorPoint = Vector2.new(0,0)
  276. AB.Position = UDim2.new(0.05,0,0.025,0)
  277. AB.BackgroundColor3 = Col1
  278. AB.BorderSizePixel = 1
  279. AB.TextScaled = true
  280. AB.Font = "GothamBold"
  281. AB.Text = "Misc Admin"
  282. AB.TextColor3 = Col3
  283. AB.BorderColor3 = Col3
  284. AB.MouseButton1Click:Connect(function()
  285. loadstring(game:GetObjects("rbxassetid://3142002076")[1].Source)()
  286. end)
  287.  
  288. local HB = Instance.new("TextButton")
  289. HB.Parent = F2
  290. HB.Size = UDim2.new(0.25,0,0.05,0)
  291. HB.AnchorPoint = Vector2.new(0,0)
  292. HB.Position = UDim2.new(0.35,0,0.025,0)
  293. HB.BackgroundColor3 = Col1
  294. HB.BorderSizePixel = 1
  295. HB.TextScaled = true
  296. HB.Font = "GothamBold"
  297. HB.Text = "Hat Fling"
  298. HB.TextColor3 = Col3
  299. HB.BorderColor3 = Col3
  300. HB.MouseButton1Click:Connect(function()
  301. loadstring(game:GetObjects("rbxassetid://4732616720")[1].Source)()
  302. end)
  303. local HBu = Instance.new("TextButton")
  304. HBu.Parent = F2
  305. HBu.Size = UDim2.new(0.25,0,0.05,0)
  306. HBu.AnchorPoint = Vector2.new(0,0)
  307. HBu.Position = UDim2.new(0.65,0,0.025,0)
  308. HBu.BackgroundColor3 = Col1
  309. HBu.BorderSizePixel = 1
  310. HBu.TextScaled = true
  311. HBu.Font = "GothamBold"
  312. HBu.Text = "Infinite Yields"
  313. HBu.TextColor3 = Col3
  314. HBu.BorderColor3 = Col3
  315. HBu.MouseButton1Click:Connect(function()
  316. loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
  317. end)
  318. local PB = Instance.new("TextButton")
  319. PB.Parent = F2
  320. PB.Size = UDim2.new(0.25,0,0.05,0)
  321. PB.AnchorPoint = Vector2.new(0,0)
  322. PB.Position = UDim2.new(0.05,0,0.1,0)
  323. PB.BackgroundColor3 = Col1
  324. PB.BorderSizePixel = 1
  325. PB.TextScaled = true
  326. PB.Font = "GothamBold"
  327. PB.Text = "Revize"
  328. PB.TextColor3 = Col3
  329. PB.BorderColor3 = Col3
  330. PB.MouseButton1Click:Connect(function()
  331. loadstring(game:HttpGet(('https://pastebin.com/raw/ibFPdiF7'),true))()
  332. end)
  333. local PB2 = Instance.new("TextButton")
  334. PB2.Parent = F2
  335. PB2.Size = UDim2.new(0.25,0,0.05,0)
  336. PB2.AnchorPoint = Vector2.new(0,0)
  337. PB2.Position = UDim2.new(0.35,0,0.1,0)
  338. PB2.BackgroundColor3 = Col1
  339. PB2.BorderSizePixel = 1
  340. PB2.TextScaled = true
  341. PB2.Font = "GothamBold"
  342. PB2.Text = "Click to Teleport"
  343. PB2.TextColor3 = Col3
  344. PB2.BorderColor3 = Col3
  345. PB2.MouseButton1Click:Connect(function()
  346. loadstring(game:HttpGet(('https://pastebin.com/raw/rUecatt5'),true))()
  347. end)
  348. local fe = Instance.new("TextButton")
  349. fe.Parent = F2
  350. fe.Size = UDim2.new(0.25,0,0.05,0)
  351. fe.AnchorPoint = Vector2.new(0,0)
  352. fe.Position = UDim2.new(0.65,0,0.1,0)
  353. fe.BackgroundColor3 = Col1
  354. fe.BorderSizePixel = 1
  355. fe.TextScaled = true
  356. fe.Font = "GothamBold"
  357. fe.Text = "FE Checker"
  358. fe.TextColor3 = Col3
  359. fe.BorderColor3 = Col3
  360. fe.MouseButton1Click:Connect(function()
  361. loadstring(game:HttpGet(('https://pastebin.com/raw/YwM006C0'),true))()
  362. end)
  363. wait(1)
  364. local SB = Instance.new("TextButton")
  365. SB.Parent = F2
  366. SB.Size = UDim2.new(0.25,0,0.05,0)
  367. SB.AnchorPoint = Vector2.new(0,0)
  368. SB.Position = UDim2.new(0.05,0,0.175,0)
  369. SB.BackgroundColor3 = Col1
  370. SB.BorderSizePixel = 1
  371. SB.TextScaled = true
  372. SB.Font = "GothamBold"
  373. SB.Text = "Spin GUI"
  374. SB.TextColor3 = Col3
  375. SB.BorderColor3 = Col3
  376. SB.MouseButton1Click:Connect(function()
  377. loadstring(game:HttpGet(('https://pastebin.com/raw/zHxNWgY7'),true))()
  378. end)
  379. local MM2 = Instance.new("TextButton")
  380. MM2.Parent = F2
  381. MM2.Size = UDim2.new(0.25,0,0.05,0)
  382. MM2.AnchorPoint = Vector2.new(0,0)
  383. MM2.Position = UDim2.new(0.35,0,0.175,0)
  384. MM2.BackgroundColor3 = Col1
  385. MM2.BorderSizePixel = 1
  386. MM2.TextScaled = true
  387. MM2.Font = "GothamBold"
  388. MM2.Text = " Vynixu's MM2 Script"
  389. MM2.TextColor3 = Col3
  390. MM2.BorderColor3 = Col3
  391. MM2.MouseButton1Click:Connect(function()
  392. loadstring(game:GetObjects("rbxassetid://4001118261")[1].Source)()
  393. end)
  394. local Har = Instance.new("TextButton")
  395. Har.Parent = F2
  396. Har.Size = UDim2.new(0.25,0,0.05,0)
  397. Har.AnchorPoint = Vector2.new(0,0)
  398. Har.Position = UDim2.new(0.65,0,0.175,0)
  399. Har.BackgroundColor3 = Col1
  400. Har.BorderSizePixel = 1
  401. Har.TextScaled = true
  402. Har.Font = "GothamBold"
  403. Har.Text = "Harked"
  404. Har.TextColor3 = Col3
  405. Har.BorderColor3 = Col3
  406. Har.MouseButton1Click:Connect(function()
  407. loadstring(game:HttpGet(('https://pastebin.com/raw/Zyz6dMcE'),true))()
  408. end)
  409. local PR = Instance.new("TextButton")
  410. PR.Parent = F2
  411. PR.Size = UDim2.new(0.25,0,0.05,0)
  412. PR.AnchorPoint = Vector2.new(0,0)
  413. PR.Position = UDim2.new(0.05,0,0.250,0)
  414. PR.BackgroundColor3 = Col1
  415. PR.BorderSizePixel = 1
  416. PR.TextScaled = true
  417. PR.Font = "GothamBold"
  418. PR.Text = "Prison Life GUI 1"
  419. PR.TextColor3 = Col3
  420. PR.BorderColor3 = Col3
  421. PR.MouseButton1Click:Connect(function()
  422. loadstring(game:HttpGet(('https://pastebin.com/raw/KA5rd9tc'),true))()
  423. end)
  424. local PR2 = Instance.new("TextButton")
  425. PR2.Parent = F2
  426. PR2.Size = UDim2.new(0.25,0,0.05,0)
  427. PR2.AnchorPoint = Vector2.new(0,0)
  428. PR2.Position = UDim2.new(0.35,0,0.250,0)
  429. PR2.BackgroundColor3 = Col1
  430. PR2.BorderSizePixel = 1
  431. PR2.TextScaled = true
  432. PR2.Font = "GothamBold"
  433. PR2.Text = "Amokah's GUI"
  434. PR2.TextColor3 = Col3
  435. PR2.BorderColor3 = Col3
  436. PR2.MouseButton1Click:Connect(function()
  437. loadstring(game:HttpGet(('https://pastebin.com/raw/JS5SYqaU'),true))()
  438. end)
  439. local RP = Instance.new("TextButton")
  440. RP.Parent = F2
  441. RP.Size = UDim2.new(0.25,0,0.05,0)
  442. RP.AnchorPoint = Vector2.new(0,0)
  443. RP.Position = UDim2.new(0.65,0,0.250,0)
  444. RP.BackgroundColor3 = Col1
  445. RP.BorderSizePixel = 1
  446. RP.TextScaled = true
  447. RP.Font = "GothamBold"
  448. RP.Text = "Redwood Prison GUI"
  449. RP.TextColor3 = Col3
  450. RP.BorderColor3 = Col3
  451. RP.MouseButton1Click:Connect(function()
  452. loadstring(game:HttpGet(('https://pastebin.com/raw/2QQAMVxU'),true))()
  453. end)
  454. local BB = Instance.new("TextButton")
  455. BB.Parent = F2
  456. BB.Size = UDim2.new(0.25,0,0.05,0)
  457. BB.AnchorPoint = Vector2.new(0,0)
  458. BB.Position = UDim2.new(0.05,0,0.325,0)
  459. BB.BackgroundColor3 = Col1
  460. BB.BorderSizePixel = 1
  461. BB.TextScaled = true
  462. BB.Font = "GothamBold"
  463. BB.Text = "Bloxburg Auto Barber"
  464. BB.TextColor3 = Col3
  465. BB.BorderColor3 = Col3
  466. BB.MouseButton1Click:Connect(function()
  467. loadstring(game:HttpGet(('https://pastebin.com/raw/Lx1amH3H'),true))()
  468. end)
  469. local Dex = Instance.new("TextButton")
  470. Dex.Parent = F2
  471. Dex.Size = UDim2.new(0.25,0,0.05,0)
  472. Dex.AnchorPoint = Vector2.new(0,0)
  473. Dex.Position = UDim2.new(0.35,0,0.325,0)
  474. Dex.BackgroundColor3 = Col1
  475. Dex.BorderSizePixel = 1
  476. Dex.TextScaled = true
  477. Dex.Font = "GothamBold"
  478. Dex.Text = "Dex"
  479. Dex.TextColor3 = Col3
  480. Dex.BorderColor3 = Col3
  481. Dex.MouseButton1Click:Connect(function()
  482. loadstring(game:HttpGet(('https://pastebin.com/raw/jxZELQUn'),true))()
  483. end)
  484. SB2.MouseButton1Click:Connect(function()
  485. F4.Visible = false
  486. F4.Active = false
  487. F5.Visible = false
  488. F5.Active = false
  489. F2.Visible = true
  490. F2.Active = true
  491. end)
  492. wait(1)
  493. F1:TweenPosition(UDim2.new(0.3,0,0.1,0),'Out','Quart',2)
Add Comment
Please, Sign In to add comment