我試圖讓這個當你觸摸一塊磚,它會凍結你的性格,然後在ModuleScript,使一個ImageLabel然後慢慢出現運行功能當你的角色被傳送到該建築物內部/外部時消失。到目前爲止,我已經設法凍結你的角色並調用函數,但是使圖像出現和消失的代碼不起作用。這是代碼:ROBLOX的Lua - 圖像透明度功能
_G.BeginFade = {}
_G.BeginFade.GlobalFunction = function()
`local Image = game.StarterGui.Fade.FadeImage`
Image.Visible = true
repeat
Image.ImageTransparency = Image.ImageTransparency - 0.1
wait(0.2)
until
Image.ImageTransparency == 0
wait(2)
repeat
Image.ImageTransparency = Image.ImageTransparency + 0.1
until
Image.ImageTransparency == 1
end
我用_G.BeginFade.GlobalFunction()調用函數,我把它從不同的腳本。包含該函數的ModuleScript位於StarterGui中。它返回此錯誤:你可能想看看
Workspace.Home Teleport.tele2.Teleport pad Script:47: attempt to index field 'BeginFade' (a nil value)
謝謝,但我需要它的功能,所以我可以從其他腳本調用它。如果我把它的一部分放到一個函數中,它會起作用嗎? – Dragonshield