Advertisement
Chaxsity

Myelin v1.1

Jun 17th, 2019
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.26 KB | None | 0 0
  1. local pname = game:GetService("Players").LocalPlayer
  2.  
  3. local ws = game:GetService("Workspace")
  4.  
  5. local SN = "Myelin"
  6.  
  7. local gfont = "SourceSansSemibold"
  8.  
  9. function Log(text, r, g, b, font)
  10. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  11. Text = "{" .. tostring(SN) .. "} - " .. text;
  12. Color = Color3.new(r, g, b);
  13. Font = Enum.Font[font];
  14. FontSize = Enum.FontSize.Size24;
  15. })
  16. end
  17.  
  18. Log("Checking Roblox...", 255, 0, 0, tostring(gfont))
  19. for i,v in pairs(game:GetService("CoreGui"):GetChildren()) do
  20. if v.Name == "UILibrary" then
  21. v:Destroy()
  22. elseif v.Name == "RobloxLoadingGui" then
  23. v:Destroy()
  24. end
  25. end
  26. Log("Successfully Checked Roblox!", 0, 255, 0, tostring(gfont))
  27.  
  28. Log("Loading Mikxy's API...", 255, 0, 0, tostring(gfont))
  29. local Mapi = loadstring(game:HttpGet("https://itaintmyfault.000webhostapp.com/MAPI", true))()
  30. Log("Loaded Mikxy's API!", 0, 255, 0, tostring(gfont))
  31.  
  32. Log("Loading framework...", 255, 0, 0, tostring(gfont))
  33. local library = loadstring(game:HttpGet("https://itaintmyfault.000webhostapp.com/WFW", true))()
  34. Log("Loaded framework successfully!", 0, 255, 0, tostring(gfont))
  35.  
  36. Log("Authenticating, " .. tostring(pname) .. "!", 0, 255, 0, tostring(gfont))
  37.  
  38. if syn ~= nil then
  39. Log("Welcome Synapse X Buyer!", 200, 0, 100, tostring(gfont))
  40. else
  41. Log(tostring(pname) .. ", isn't using Synapse X!", 200, 0, 100, tostring(gfont))
  42. Log("Loading Failed!", 255, 0, 0, tostring(gfont))
  43. for i,v in pairs(game:GetService("CoreGui"):GetChildren()) do
  44. if v.Name == "UILibrary" then
  45. v:Destroy()
  46. end
  47. end
  48. end
  49.  
  50. Log("Loaded with 0 Errors!", 200, 0, 100, tostring(gfont))
  51.  
  52. local Menu = library:CreateWindow({
  53. text = tostring(SN) .. " Menu"
  54. })
  55.  
  56. local Game = library:CreateWindow({
  57. text = "Game Config"
  58. })
  59.  
  60. local Player = library:CreateWindow({
  61. text = "Player Config"
  62. })
  63.  
  64. local Games = library:CreateWindow({
  65. text = "Game Scripts"
  66. })
  67.  
  68. local Guis = library:CreateWindow({
  69. text = "Gui Scripts"
  70. })
  71.  
  72. local Scripts = library:CreateWindow({
  73. text = "Misc Scripts"
  74. })
  75.  
  76. Hide("Game Config")
  77. Hide("Player Config")
  78. Hide("Game Scripts")
  79. Hide("Gui Scripts")
  80. Hide("Misc Scripts")
  81.  
  82. Show(tostring(SN) .. " Menu")
  83.  
  84. ------------------------------ MENU SHIT STARTS HERE
  85.  
  86. Menu:AddLabel("Made By Mikxy")
  87.  
  88. local gamecon = false
  89. Menu:AddToggle("Game Config", function(state)
  90. if gamecon == false then
  91. gamecon = true
  92. Show("Game Config")
  93. else
  94. gamecon = false
  95. Hide("Game Config")
  96. end
  97. end)
  98.  
  99. local playercon = false
  100. Menu:AddToggle("Player Config", function(state)
  101. if playercon == false then
  102. playercon = true
  103. Show("Player Config")
  104. else
  105. playercon = false
  106. Hide("Player Config")
  107. end
  108. end)
  109.  
  110. local games = false
  111. Menu:AddToggle("Game Scripts", function(state)
  112. if games == false then
  113. games = true
  114. Show("Game Scripts")
  115. else
  116. games = false
  117. Hide("Game Scripts")
  118. end
  119. end)
  120.  
  121. local guis = false
  122. Menu:AddToggle("Gui Scripts", function(state)
  123. if guis == false then
  124. guis = true
  125. Show("Gui Scripts")
  126. else
  127. guis = false
  128. Hide("Gui Scripts")
  129. end
  130. end)
  131.  
  132. local scripts = false
  133. Menu:AddToggle("Misc Scripts", function(state)
  134. if scripts == false then
  135. scripts = true
  136. Show("Misc Scripts")
  137. else
  138. scripts = false
  139. Hide("Misc Scripts")
  140. end
  141. end)
  142.  
  143. ------------------------------ MENU SHIT ENDS HERE
  144.  
  145. ------------------------------ GAME SHIT STARTS HERE
  146.  
  147. Game:AddLabel("Game Identity = " .. game.PlaceId)
  148.  
  149. ------------------------------ GAME SHIT ENDS HERE
  150.  
  151. ------------------------------ PLAYER SHIT STARTS HERE
  152.  
  153. Player:AddLabel("Name = " .. tostring(pname))
  154. Player:AddLabel("ID = " .. pname.UserId)
  155.  
  156. Player:AddBox("Walk Speed", function(object, focus)
  157. if focus then
  158. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = tonumber(object.Text) or 16
  159. end
  160. end)
  161.  
  162. Player:AddBox("Jump Power", function(object, focus)
  163. if focus then
  164. game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = tonumber(object.Text) or 16
  165. end
  166. end)
  167.  
  168. Player:AddBox("Gravity", function(object, focus)
  169. if focus then
  170. game:GetService("Workspace").Gravity = tonumber(object.Text) or 164
  171. end
  172. end)
  173.  
  174. ------------------------------ PLAYER SHIT ENDS HERE
  175.  
  176. ------------------------------ GAME SCRIPTS SHIT STARTS HERE
  177.  
  178. Games:AddButton("Jailbreak AutoRob", function()
  179. Log("AutoRob Loaded!", 0, 255, 0, tostring(gfont))
  180. loadstring(game:GetObjects("rbxassetid://1461971147")[1].Source)()
  181. end)
  182.  
  183. Games:AddButton("Jailbreak Gui", function()
  184. loadstring(game:HttpGet("https://pastebin.com/raw/hTZqfmLH"))()
  185. Log("JB Gui Loaded!", 0, 255, 0, tostring(gfont))
  186. end)
  187.  
  188. Games:AddButton("Jailbreak Car Speed", function()
  189. Log("Modding Car Speed...", 255, 0, 0, tostring(gfont))
  190. loadstring(game:HttpGet("https://pastebin.com/raw/awPkNzyR"))()
  191. Log("Car Speed Modded!", 0, 255, 0, tostring(gfont))
  192. end)
  193.  
  194. Games:AddButton("Jailbreak Game Passes", function()
  195. loadstring(game:HttpGet("https://pastebin.com/raw/Aa7xEZuy"))()
  196. Log("Game Passes Bypassed!", 0, 255, 0, tostring(gfont))
  197. end)
  198.  
  199. Games:AddToggle("Jailbreak NoClip", function(state)
  200. if state == true then
  201.  
  202. for i,child in pairs(ws.Buildings:GetChildren()) do
  203. if child:IsA("Part") then
  204. child.CanCollide = false
  205. end
  206. end
  207.  
  208. for i,Child in pairs(game:GetService("Workspace").Doors:GetChildren()) do
  209. if Child.Name ~= "SlideDoor" then
  210. for i,parts in pairs(Child.Model:GetChildren()) do
  211. parts.CanCollide = false
  212. print(parts.Name)
  213. end
  214. end
  215. end
  216. for i,Child in pairs(game:GetService("Workspace").Doors:GetChildren()) do
  217. if Child.Name ~= "SwingDoor" then
  218. for i,parts in pairs(Child.Model:GetChildren()) do
  219. if parts:IsA("Part") then
  220. parts.CanCollide = false
  221. print(parts.Name) end
  222. end
  223. end
  224. end
  225. Log("Doors/Buildings NoClipped!", 0, 255, 0, tostring(gfont))
  226. else
  227. for i,child in pairs(ws.Buildings:GetChildren()) do
  228. if child:IsA("Part") then
  229. child.CanCollide = true
  230. end
  231. end
  232. for i,Child in pairs(game:GetService("Workspace").Doors:GetChildren()) do
  233. if Child.Name ~= "SlideDoor" then
  234. for i,parts in pairs(Child.Model:GetChildren()) do
  235. parts.CanCollide = true
  236. print(parts.Name)
  237. end
  238. end
  239. end
  240. for i,Child in pairs(game:GetService("Workspace").Doors:GetChildren()) do
  241. if Child.Name ~= "SwingDoor" then
  242. for i,parts in pairs(Child.Model:GetChildren()) do
  243. if parts:IsA("Part") then
  244. parts.CanCollide = true
  245. print(parts.Name) end
  246. end
  247. end
  248. end
  249. Log("Doors/Buildings Clipped!", 255, 0, 0, tostring(gfont))
  250. end
  251. end)
  252.  
  253. Games:AddButton("Assassin Aimbot (Q)", function()
  254. loadstring(game:HttpGet("https://itaintmyfault.000webhostapp.com/assaimbot"))()
  255. Log("Game Passes Bypassed!", 255, 0, 0, tostring(gfont))
  256. end)
  257.  
  258. ------------------------------ GAMES SCRIPTS SHIT ENDS HERE
  259.  
  260. ------------------------------ GUI SCRIPTS STARTS ENDS HERE
  261.  
  262. Guis:AddButton("Infinite Yield", function()
  263. Log("Loading Infinite Yield...", 255, 0, 0, tostring(gfont))
  264. loadstring(game:HttpGet(('https://pastebin.com/raw/tzTXmYf2'),true))()
  265. Log("Infinite Yield Loaded!", 255, 0, 0, tostring(gfont))
  266. end)
  267.  
  268. Guis:AddButton("Reviz Admin", function()
  269. Log("Loading Reviz Admin...", 255, 0, 0, tostring(gfont))
  270. loadstring(game:HttpGet("https://itaintmyfault.000webhostapp.com/reviz", true))()
  271. Log("Reviz Admin Loaded!", 255, 0, 0, tostring(gfont))
  272. end)
  273.  
  274. Guis:AddButton("Topkek v3", function()
  275. Log("Loading Topkek v3...", 255, 0, 0, tostring(gfont))
  276. loadstring(game:HttpGet("https://itaintmyfault.000webhostapp.com/topkek3", true))()
  277. Log("Topkek v3 Loaded!", 255, 0, 0, tostring(gfont))
  278. end)
  279.  
  280. Guis:AddButton("Topkek v4", function()
  281. Log("Loading Topkek v4...", 255, 0, 0, tostring(gfont))
  282. loadstring(game:HttpGet(('https://itaintmyfault.000webhostapp.com/topkek4'),true))()
  283. Log("Topkek v4 Loaded!", 255, 0, 0, tostring(gfont))
  284. end)
  285.  
  286. Guis:AddButton("Dark Dex", function()
  287. Log("Loading Dark Dex...", 255, 0, 0, tostring(gfont))
  288. loadstring(game:HttpGet(('https://itaintmyfault.000webhostapp.com/darkdex'),true))()
  289. Log("Dark Dex Loaded!", 255, 0, 0, tostring(gfont))
  290. end)
  291.  
  292. Guis:AddButton("Slick Dex", function()
  293. Log("Loading Slick Dex...", 255, 0, 0, tostring(gfont))
  294. loadstring(game:HttpGet(('https://itaintmyfault.000webhostapp.com/slick%20dex'),true))()
  295. Log("Slick Dex Loaded!", 255, 0, 0, tostring(gfont))
  296. end)
  297.  
  298. Guis:AddButton("MrSpy", function()
  299. Log("Loading MrSpy...", 255, 0, 0, tostring(gfont))
  300. loadstring(game:HttpGet("https://mrspyv2source.000webhostapp.com/", true))()
  301. Log("MrSpy Loaded!", 255, 0, 0, tostring(gfont))
  302. end)
  303.  
  304. ------------------------------ GUI SCRIPTS SHIT ENDS HERE
  305.  
  306. ------------------------------ MISC SCRIPTS SHIT STARTS HERE
  307.  
  308. Scripts:AddBox("Load Url", function(object, focus)
  309. if focus then
  310. loadstring(game:HttpGet(object.Text, true))()
  311. end
  312. end)
  313.  
  314. Scripts:AddBox("Load Assets", function(object, focus)
  315. if focus then
  316. loadstring(game:GetObjects("rbxassetid://" .. tostring(object.Text))[1].Source)()
  317. end
  318. end)
  319.  
  320. Scripts:AddBox("Submit Script", function(object, focus)
  321. if focus then
  322. loadstring(object.Text)()
  323. end
  324. end)
  325.  
  326. Scripts:AddBox("Save Instance", function(object, focus)
  327. if focus then
  328. saveinstance(object.Text)
  329. end
  330. end)
  331.  
  332. ------------------------------ MISC SCRIPTS SHIT ENDS HERE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement