my hand drawn impact frames work in studio but dont work in game, i think its because the image labels dont load, is there a work around for this?
local UI = script.FramesBF:Clone()
UI.Parent = game.Players.LocalPlayer.PlayerGui
task.spawn(function()
for i = 1, 12 do
for i,v in pairs(UI:children()) do
v.Visible = false
end
UI:FindFirstChild("Frame"..i).Visible = true
game:GetService("RunService").Stepped:Wait()
end
UI.Enabled = false
end)
in studio:
https://gyazo.com/114dd4d1156eacd8687f8b93c0c77e44.mp4
in game:
https://gyazo.com/2b3aa14ee8cced5482035e07aae3e46e.mp4