Hello! i helped my friend make his dream game. but there is one bug we were too lazy to fix. theres a boss fight in the game and if you release the boss. it releases the boss for everyone. is there a way i can make a humanoid appear for one person?
2 Likes
You can use local script to make the boss appear to one person.
1 Like
i tried that once with putting the boss in replicated storage. and then spawning it in. but the bosses ai didint work
Because the AI didn’t replicate to the client. You might have to clone the AI client-sided and parent it to the boss.
1 Like
What. how do i do that? can you give me some like idk a tutorial on how to do that.
Clone the AI script and parent it to the boss on through a client script.
-- localscript
local AiScriptClone = AiScript:Clone()
AiScriptClone.Parent = boss
ohh
thanks i might try that later.
1 Like
use a local script when cloning/parenting the boss. if you do this in the server, all the players will see it. if you do it in the client, only that client can see the changes. best of luck!