Preloading Images and removing core Gui's, Please help?
No output, the script is in a localscript and positioned here: http://puu.sh/8nGn7.png
Basically I'm trying to preload some images and disable some core gui's but neither works.
Things I have tried:
Changing pairs to ipairs in the for loop.
Used a different method for disabling core gui's involving enum
02 | player = game:GetService( "Players" ).LocalPlayer |
03 | player:WaitForChild( "PlayerGui" ):WaitForChild( "HealthGUI" ):Destroy() |
04 | StarterGui = game:GetService( "StarterGui" ) |
05 | game.StarterGui:SetCoreGuiEnabled( "Health" , false ) |
06 | game.StarterGui:SetCoreGuiEnabled( "BackPack" , false ) |
07 | game.StarterGui:SetCoreGuiEnabled( "Chat" , false ) |
09 | Images = { 154661376 , 154661390 , 154661404 , 154661415 , 154661431 , 154661453 , 154661473 , 152212548 , 152210708 , 154567083 , 154534470 , 154567321 , 154570980 , 154567343 , 154570977 , 154570974 , 154570968 } |
10 | for i,v in pairs (Images) do |