Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Preloading Images and removing core Gui's, Please help?

Asked by 11 years ago

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

01wait(.1)
02player = game:GetService("Players").LocalPlayer
03player:WaitForChild("PlayerGui"):WaitForChild("HealthGUI"):Destroy() -- this is a test, added in at end
04StarterGui = game:GetService("StarterGui")
05game.StarterGui:SetCoreGuiEnabled("Health",false)
06game.StarterGui:SetCoreGuiEnabled("BackPack", false)
07game.StarterGui:SetCoreGuiEnabled("Chat", false)
08 
09Images = {154661376,154661390,154661404,154661415,154661431,154661453,154661473,152212548,152210708,154567083,154534470,154567321,154570980,154567343,154570977,154570974,154570968}
10for i,v in pairs(Images) do
11    game:GetService("ContentProvider"):Preload("http://www.roblox.com/asset/?id=" .. v)
12end

1 answer

Log in to vote
1
Answered by
MixCorp 70
11 years ago

Please leave thumbs up!

1game.StarterGui:SetCoreGuiEnabled("All",false)
2for i=1,#Images do
3game:GetService("ContentProvider"):Preload("http://"http://www.roblox.com/asset/?id=" ..Images[i]
4end

This would be a way to do it. Ive not seen alot about Preload. But I heard somewhere it was for Sounds only. I could be wrong, But if this works, Leave a thumbs up please.

0
http://wiki.roblox.com/index.php/Preload_(Method) Works for everything, what you have given me is just an adjusted version of the script I had, nothing changed at all apart from disabling all coregui's (which I don't want) crackabottle123 110 — 11y
Ad

Answer this question