ManlyFoes

Untitled

Apr 23rd, 2016
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. local GENEFolder = game.CoreGui
  2.  
  3. game:GetObjects("rbxassetid://288643567")[1].Parent = GENEFolder
  4.  
  5. GENEFolder:WaitForChild("GlobalData")
  6. if GENEFolder:FindFirstChild("GlobalData") ~= nil then
  7. for i,v in pairs(GENEFolder:FindFirstChild("GlobalData"):GetChildren()) do
  8. v.Parent = GENEFolder
  9. end
  10. end
  11.  
  12.  
  13. if GENEFolder:FindFirstChild("MainData") ~= nil then
  14. for i,v in pairs(GENEFolder:FindFirstChild("MainData"):GetChildren()) do
  15. if v.ClassName == "LocalScript" then
  16. v.Parent = GENEFolder
  17. loadstring(v.Source)()
  18. end
  19. end
  20. end
Add Comment
Please, Sign In to add comment