Guest User

Untitled

a guest
Feb 19th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. function startup()
  2. local function makeThread(str)
  3. local newstr = "coroutine.resume(coroutine.create(function()\n"
  4. newstr = newstr .. str .. "\n"
  5. newstr = newstr .. "end))\n"
  6. return newstr
  7. end
  8.  
  9. local gui = game:GetObjects("rbxassetid://418955355")[1]
  10. gui.ExplorerPanel.LocalScript.Source = string.gsub(gui.ExplorerPanel.LocalScript.Source,"script.Parent","game.CoreGui.Dex.ExplorerPanel")
  11. gui.PropertiesFrame.Properties.Source = string.gsub(gui.PropertiesFrame.Properties.Source,"script.Parent.Parent","game.CoreGui.Dex")
  12. gui.Selection.Source = string.gsub(gui.Selection.Source,"script.Parent","game.CoreGui.Dex")
  13. gui.ScriptEditor.LocalScript.Source = string.gsub(gui.ScriptEditor.LocalScript.Source,"script.Parent","game.CoreGui.Dex.ScriptEditor")
  14. gui.Parent = game.CoreGui
  15.  
  16. local a = makeThread(gui.ExplorerPanel.LocalScript.Source)
  17. local b = makeThread(gui.PropertiesFrame.Properties.Source)
  18. local c = makeThread(gui.Selection.Source)
  19. local d = makeThread(gui.ScriptEditor.LocalScript.Source)
  20.  
  21. loadstring(a..b..c..d)()
  22. end
  23.  
  24. startup()
Add Comment
Please, Sign In to add comment