nij55

Erig V1

Mar 26th, 2020
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.79 KB | None | 0 0
  1. --This is ERIG V1 - I'm not working on this anymore,but I am working on V3 here: https://pastebin.com/isnWJCXS
  2. repeat wait(1) until game:IsLoaded()
  3. local plr = game.Players.LocalPlayer
  4. local guis = plr.PlayerGui
  5. local main = Instance.new("ScreenGui")
  6. main.Parent = guis
  7. main.ResetOnSpawn = false
  8. local Frame = Instance.new("Frame")
  9. Frame.Parent = main
  10. Frame.Size = UDim2.new(0.2, 0,0.5, 0)
  11. Frame.AnchorPoint = Vector2.new(0,0)
  12. Frame.Position = UDim2.new(-1,0,-1,0)
  13. main.Name = "ERIG"
  14. Frame.Name = "TheFrame"
  15. Frame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  16. Frame.Draggable = true
  17. Frame.Active = true
  18. Frame.Selectable = true
  19. Frame.BorderSizePixel = 0
  20. Frame.ClipsDescendants = true
  21. local erig = Instance.new("ImageLabel")
  22. erig.Parent = Frame
  23. erig.Name = "ERIG_Tittle"
  24. erig.Size = UDim2.new(0,60,0,20)
  25. erig.Position = UDim2.new(0.4,0,0,0)
  26. erig.BackgroundTransparency = 1
  27. erig.Image = "http://www.roblox.com/asset/?id=4732590440"
  28. local Exit = Instance.new("TextButton")
  29. Exit.Parent = Frame
  30. Exit.Name  = "Exit_Button"
  31. Exit.Size = UDim2.new(0,20,0,20)
  32. Exit.AnchorPoint = Vector2.new(0,0)
  33. Exit.Position = UDim2.new(0, 0,0, 0)
  34. Exit.BackgroundTransparency = 1
  35. Exit.TextScaled = true
  36. Exit.Font = "GothamBold"
  37. Exit.Text = "X"
  38. Exit.TextColor3 = Color3.new(1,1,1)
  39. Exit.MouseButton1Click:Connect(function()
  40.     Frame:TweenPosition(UDim2.new(-1,0,-1,0),'Out','Quart',3)
  41.     wait(4)
  42.     main:Destroy()
  43. end)
  44. local Min = Instance.new("TextButton")
  45. Min.Parent = Frame
  46. Min.Name  = "Min_Button"
  47. Min.Size = UDim2.new(0,20,0,20)
  48. Min.AnchorPoint = Vector2.new(0,0)
  49. Min.Position = UDim2.new(0.06,0,0,0)
  50. Min.BackgroundTransparency = 1
  51. Min.TextScaled = true
  52. Min.Font = "GothamBold"
  53. Min.Text = "_"
  54. Min.TextColor3 = Color3.new(1,1,1)
  55. Min.MouseButton1Click:Connect(function()
  56.     Frame.Parent = game.ReplicatedStorage
  57.     local Max = Instance.new("TextButton")
  58.     Max.Parent = main
  59.     Max.Size = UDim2.new(0,125,0,40)
  60.     Max.AnchorPoint = Vector2.new(0,0)
  61.     Max.Position = UDim2.new(0,0,0.8,0)
  62.     Max.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  63.     Max.BorderSizePixel = 0
  64.     Max.TextScaled = true
  65.     Max.Font = "GothamBold"
  66.     Max.TextColor3 = Color3.new(1,1,1)
  67.     Max.Text = " Maximize "
  68.     Max.MouseButton1Click:Connect(function()
  69.         Frame.Parent = main
  70.         Max:Destroy()
  71.     end)
  72. end)
  73. local AB = Instance.new("TextButton")
  74. AB.Parent = Frame
  75. AB.Size = UDim2.new(0,70,0,50)
  76. AB.AnchorPoint = Vector2.new(0,0)
  77. AB.Position = UDim2.new(0.05,0,0.1,0)
  78. AB.BackgroundColor3 = Color3.new(0.15,0.15,0.15)
  79. AB.BorderSizePixel = 1
  80. AB.TextScaled = true
  81. AB.Font = "GothamBold"
  82. AB.Text = "Misc Admin"
  83. AB.TextColor3 = Color3.new(1,1,1)
  84. AB.BorderColor3 = Color3.new(1,1,1)
  85. AB.MouseButton1Click:Connect(function()
  86.     loadstring(game:GetObjects("rbxassetid://3142002076")[1].Source)()
  87. end)
  88. local HB = Instance.new("TextButton")
  89. HB.Parent = Frame
  90. HB.Size = UDim2.new(0,70,0,50)
  91. HB.AnchorPoint = Vector2.new(0,0)
  92. HB.Position = UDim2.new(0.35,0,0.1,0)
  93. HB.BackgroundColor3 = Color3.new(0.15,0.15,0.15)
  94. HB.BorderSizePixel = 1
  95. HB.TextScaled = true
  96. HB.Font = "GothamBold"
  97. HB.Text = "Hat Fling"
  98. HB.TextColor3 = Color3.new(1,1,1)
  99. HB.BorderColor3 = Color3.new(1,1,1)
  100. HB.MouseButton1Click:Connect(function()
  101.     loadstring(game:GetObjects("rbxassetid://4732616720")[1].Source)()
  102. end)
  103. local HBu = Instance.new("TextButton")
  104. HBu.Parent = Frame
  105. HBu.Size = UDim2.new(0,70,0,50)
  106. HBu.AnchorPoint = Vector2.new(0,0)
  107. HBu.Position = UDim2.new(0.65,0,0.1,0)
  108. HBu.BackgroundColor3 = Color3.new(0.15,0.15,0.15)
  109. HBu.BorderSizePixel = 1
  110. HBu.TextScaled = true
  111. HBu.Font = "GothamBold"
  112. HBu.Text = "Infinite Yields"
  113. HBu.TextColor3 = Color3.new(1,1,1)
  114. HBu.BorderColor3 = Color3.new(1,1,1)
  115. HBu.MouseButton1Click:Connect(function()
  116.     loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
  117. end)
  118. local PB = Instance.new("TextButton")
  119. PB.Parent = Frame
  120. PB.Size = UDim2.new(0,70,0,50)
  121. PB.AnchorPoint = Vector2.new(0,0)
  122. PB.Position = UDim2.new(0.05,0,0.4,0)
  123. PB.BackgroundColor3 = Color3.new(0.15,0.15,0.15)
  124. PB.BorderSizePixel = 1
  125. PB.TextScaled = true
  126. PB.Font = "GothamBold"
  127. PB.Text = "Revize"
  128. PB.TextColor3 = Color3.new(1,1,1)
  129. PB.BorderColor3 = Color3.new(1,1,1)
  130. PB.MouseButton1Click:Connect(function()
  131.     loadstring(game:HttpGet(('https://pastebin.com/raw/ibFPdiF7'),true))()
  132. end)
  133. local PB2 = Instance.new("TextButton")
  134. PB2.Parent = Frame
  135. PB2.Size = UDim2.new(0,70,0,50)
  136. PB2.AnchorPoint = Vector2.new(0,0)
  137. PB2.Position = UDim2.new(0.35,0,0.4,0)
  138. PB2.BackgroundColor3 = Color3.new(0.15,0.15,0.15)
  139. PB2.BorderSizePixel = 1
  140. PB2.TextScaled = true
  141. PB2.Font = "GothamBold"
  142. PB2.Text = "Click to teleport"
  143. PB2.TextColor3 = Color3.new(1,1,1)
  144. PB2.BorderColor3 = Color3.new(1,1,1)
  145. PB2.MouseButton1Click:Connect(function()
  146.     loadstring(game:HttpGet(('https://pastebin.com/raw/rUecatt5'),true))()
  147. end)
  148. local fe = Instance.new("TextButton")
  149. fe.Parent = Frame
  150. fe.Size = UDim2.new(0,70,0,50)
  151. fe.AnchorPoint = Vector2.new(0,0)
  152. fe.Position = UDim2.new(0.65,0,0.4,0)
  153. fe.BackgroundColor3 = Color3.new(0.15,0.15,0.15)
  154. fe.BorderSizePixel = 1
  155. fe.TextScaled = true
  156. fe.Font = "GothamBold"
  157. fe.Text = "FE Checker"
  158. fe.TextColor3 = Color3.new(1,1,1)
  159. fe.BorderColor3 = Color3.new(1,1,1)
  160. fe.MouseButton1Click:Connect(function()
  161. loadstring(game:HttpGet(('https://pastebin.com/raw/YwM006C0'),true))()
  162. end)
  163. wait(1)
  164. local fe = Instance.new("TextButton")
  165. fe.Parent = Frame
  166. fe.Size = UDim2.new(0,70,0,50)
  167. fe.AnchorPoint = Vector2.new(0,0)
  168. fe.Position = UDim2.new(0.05,0,0.7,0)
  169. fe.BackgroundColor3 = Color3.new(0.15,0.15,0.15)
  170. fe.BorderSizePixel = 1
  171. fe.TextScaled = true
  172. fe.Font = "GothamBold"
  173. fe.Text = "Spin GUI"
  174. fe.TextColor3 = Color3.new(1,1,1)
  175. fe.BorderColor3 = Color3.new(1,1,1)
  176. fe.MouseButton1Click:Connect(function()
  177. loadstring(game:HttpGet(('https://pastebin.com/raw/zHxNWgY7'),true))()
  178. end)
  179. wait(1)
  180. Frame:TweenPosition(UDim2.new(0.3,0,0.1,0),'Out','Quart',2)
Add Comment
Please, Sign In to add comment