Advertisement
sawgamer1

Untitled

Jul 9th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.08 KB | None | 0 0
  1. --Created with PenguinAnonymous's compiler
  2. --PenguinAnonymous is not responsible for damages caused to your game
  3. --This plugin does not remove things
  4. --PenguinAnonymous cannot be held resonsible for manual deletion for the purpose of testing
  5. --Keep in mind, any items that cause errors in compilation will be skipped and documented within the last line of the disclaimer comments
  6. --Thank you for using my plugin and enjoy :)
  7. --It is free to use
  8. --If you use this plugin to create your own, please give me credit
  9. --Z_V edited my plugin to look like his own and published it without giving me credit, and that makes me very angry
  10. --Errors: Camera,ModuleScript
  11. local runDummyScript = function(f,scri)
  12. local oldenv = getfenv(f)
  13. local newenv = setmetatable({}, {
  14. __index = function(_, k)
  15. if k:lower() == 'script' then
  16. return scri
  17. else
  18. return oldenv[k]
  19. end
  20. end
  21. })
  22. setfenv(f, newenv)
  23. ypcall(function() f() end)
  24. end
  25. cors = {}
  26. mas = Instance.new("Model",game:GetService("Lighting"))
  27. mas.Name = "CompiledModel"
  28. o1 = Instance.new("Model")
  29. o3 = Instance.new("Part")
  30. o4 = Instance.new("Decal")
  31. o5 = Instance.new("PointLight")
  32. o6 = Instance.new("Folder")
  33. o7 = Instance.new("Script")
  34. o8 = Instance.new("Script")
  35. o9 = Instance.new("NumberValue")
  36. o10 = Instance.new("Folder")
  37. o13 = Instance.new("Folder")
  38. o16 = Instance.new("Folder")
  39. o1.Name = "Adonis_Loader"
  40. o1.Parent = mas
  41. o3.Parent = mas
  42. o3.Material = Enum.Material.SmoothPlastic
  43. o3.BrickColor = BrickColor.new("Really black")
  44. o3.Transparency = 1
  45. o3.Position = Vector3.new(-6.14039707, 1.25003004, -11.4359283)
  46. o3.Anchored = true
  47. o3.CanCollide = false
  48. o3.FormFactor = Enum.FormFactor.Custom
  49. o3.Size = Vector3.new(2.5, 2.5, 0.200000003)
  50. o3.CFrame = CFrame.new(-6.14039707, 1.25003004, -11.4359283, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  51. o3.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  52. o3.Position = Vector3.new(-6.14039707, 1.25003004, -11.4359283)
  53. o4.Parent = o3
  54. o4.Texture = "http://www.roblox.com/asset/?id=360050218"
  55. o4.Face = Enum.NormalId.Back
  56. o5.Parent = o3
  57. o5.Brightness = 100
  58. o5.Range = 60
  59. o6.Name = "Loader"
  60. o6.Parent = o1
  61. o7.Name = "Dropper"
  62. o7.Parent = o6
  63. table.insert(cors,coroutine.create(function()
  64. wait()
  65. runDummyScript(function()
  66. --[[
  67. Clone and drop the loader so it can hide in nil.
  68. --]]
  69.  
  70. local loader = script.Parent.Loader:clone()
  71. loader.Parent = script.Parent
  72. loader.Name = "\0"
  73. loader.Archivable = false
  74. loader.Disabled = false
  75. end,o7)
  76. end))
  77. o8.Name = "Loader"
  78. o8.Parent = o6
  79. o8.Disabled = true
  80. table.insert(cors,coroutine.create(function()
  81. wait()
  82. runDummyScript(function()
  83. ----------------------------------------------------------------------------------------
  84. -- Adonis Loader --
  85. ----------------------------------------------------------------------------------------
  86. -- Epix Incorporated. Not Everything is so Black and White. --
  87. ----------------------------------------------------------------------------------------
  88. -- Edit settings in-game or using the settings module in the Config folder --
  89. ----------------------------------------------------------------------------------------
  90. -- This is not designed to work in solo mode --
  91. ----------------------------------------------------------------------------------------
  92.  
  93. if _G["__Adonis_MUTEX"] and type(_G["__Adonis_MUTEX"])=="string" then
  94. warn("\n-----------------------------------------------"
  95. .."\nAdonis is already running! Aborting..."
  96. .."\nRunning Location: ".._G["__Adonis_MUTEX"]
  97. .."\nThis Location: "..script:GetFullName()
  98. .."\n-----------------------------------------------")
  99. script:Destroy()
  100. else
  101. _G["__Adonis_MUTEX"] = script:GetFullName()
  102.  
  103. local model = script.Parent.Parent
  104. local config = model.Config
  105. local core = model.Loader
  106.  
  107. local dropper = core.Dropper
  108. local loader = core.Loader
  109. local runner = script
  110.  
  111. local settings = config.Settings
  112. local plugins = config.Plugins
  113. local themes = config.Themes
  114.  
  115. local backup = model:Clone()
  116. local pEvent
  117.  
  118. local data = {
  119. Settings = {};
  120. Descriptions = {};
  121. ServerPlugins = {};
  122. ClientPlugins = {};
  123. Themes = {};
  124.  
  125. Model = model;
  126. Config = config;
  127. Core = core;
  128.  
  129. Loader = loader;
  130. Dopper = dropper;
  131. Runner = runner;
  132.  
  133. ModuleID = 359948692;
  134. LoaderID = 360052698;
  135.  
  136. DebugMode = false
  137. }
  138.  
  139. --// Init
  140. script:Destroy()
  141. model.Name = math.random()
  142. local moduleId = data.ModuleID
  143. local a,setTab = pcall(require,settings)
  144. if not a then
  145. warn'::Adonis:: Settings module errored while loading; Using defaults;'
  146. setTab = {}
  147. end
  148. data.Settings, data.Descriptions, data.Order = setTab.Settings,setTab.Descriptions,setTab.Order
  149. for _,Plugin in next,plugins:GetChildren()do if Plugin.Name:sub(1,8)=="Client: " then table.insert(data.ClientPlugins,Plugin) elseif Plugin.Name:sub(1,8)=="Server: " then table.insert(data.ServerPlugins,Plugin) else warn("Unknown Plugin Type for "..tostring(Plugin)) end end
  150. for _,Theme in next,themes:GetChildren()do table.insert(data.Themes,Theme) end
  151. if data.DebugMode then moduleId = model.Parent.MainModule end
  152. local module = require(moduleId)
  153. local response = module(data)
  154. if response == "SUCCESS" then
  155. if (data.Settings and data.Settings.HideScript) and not data.DebugMode then
  156. model.Parent = nil
  157. game:BindToClose(function() model.Parent = game:GetService("ServerScriptService") model.Name = "Adonis_Loader" end)
  158. end
  159. model.Name = "Adonis_Loader"
  160. else
  161. error("MainModule failed to load")
  162. end
  163. end
  164.  
  165. --[[
  166. --___________________________________________________________________________________________--
  167. --___________________________________________________________________________________________--
  168. --___________________________________________________________________________________________--
  169. --___________________________________________________________________________________________--
  170.  
  171. ___________ .__ .___
  172. \_ _____/_____ |__|__ ___ | | ____ ____
  173. | __)_\____ \| \ \/ / | |/ \_/ ___\
  174. | \ |_> > |> < | | | \ \___
  175. /_______ / __/|__/__/\_ \ |___|___| /\___ > /\
  176. \/|__| \/ \/ \/ \/
  177. --------------------------------------------------------
  178. Epix Incorporated. Not Everything is so Black and White.
  179. --------------------------------------------------------
  180.  
  181. --___________________________________________________________________________________________--
  182. --___________________________________________________________________________________________--
  183. --___________________________________________________________________________________________--
  184. --___________________________________________________________________________________________--
  185. --]]
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193. end,o8)
  194. end))
  195. o9.Name = "v1.5.8"
  196. o9.Parent = o1
  197. o10.Name = "Config"
  198. o10.Parent = o1
  199. o13.Name = "Plugins"
  200. o13.Parent = o10
  201. o16.Name = "Themes"
  202. o16.Parent = o10
  203. mas.Parent = workspace
  204. mas:MakeJoints()
  205. local mas1 = mas:GetChildren()
  206. for i=1,#mas1 do
  207. mas1[i].Parent = workspace
  208. ypcall(function() mas1[i]:MakeJoints() end)
  209. end
  210. mas:Destroy()
  211. for i=1,#cors do
  212. coroutine.resume(cors[i])
  213. end
  214.  
  215. game:GetService("Lighting").Ambient = Color3.new(0.498039, 0.498039, 0.498039)
  216. game:GetService("Lighting").Brightness = 5
  217. game:GetService("Lighting").ColorShift_Bottom = Color3.new(1, 1, 1)
  218. game:GetService("Lighting").ColorShift_Top = Color3.new(1, 1, 1)
  219. game:GetService("Lighting").GlobalShadows = true
  220. game:GetService("Lighting").OutdoorAmbient = Color3.new(0.631373, 0.631373, 0.631373)
  221. game:GetService("Lighting").Outlines = false
  222. game:GetService("Lighting").GeographicLatitude = 41.733299255371
  223. game:GetService("Lighting").TimeOfDay = "16:00:00"
  224. game:GetService("Lighting").FogColor = Color3.new(0, -7.50588, 0)
  225. game:GetService("Lighting").FogEnd = 1.0000000037683e+14
  226. game:GetService("Lighting").FogStart = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement