Whenever it gets to the script to make the henchmen spawn, nothing happens... What am I doing wrong here?
local function summonChallenge() game.ReplicatedStorage.oofer:Clone() game.ReplicatedStorage.oofer2:Clone() wait(15) game.ReplicatedStorage.oofer:Destroy() game.ReplicatedStorage.oofer2:Destroy() end
You need to reparent the henchmen to workspace.
local function summonChallenge() local henchmenThingy = game.ReplicatedStorage.oofer:Clone() local henchmenThingy2 = game.ReplicatedStorage.oofer2:Clone() local henchmenThingy.Parent = workspace local henchmenThingy2.Parent = workspace wait(15) game.ReplicatedStorage.oofer:Destroy() game.ReplicatedStorage.oofer2:Destroy() end
Objects in ReplicatedStorage are not visible