RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"find the problem in this, if you do give me a fix"
The problem in your code is that you're trying to clone "OverheadV4Billboard" from "systemFolder.Template" but there's no reference to what "systemFolder" or "Template" is. A possible fix could be: ```lua local systemFolder = game:GetService("ReplicatedStorage") -- or wherever your systemFolder is local overhead = systemFolder.Template.OverheadV4Billboard:Clone() or head:FindFirstChild("OverheadV4Billboard") ``` This assumes that your "systemFolder" is in the "ReplicatedStorage". Make sure to replace it with the actual location of your "systemFolder". Also, "head" is not defined in your script, you should define it or replace it with the actual object you're referring to.