Oh okay! I’ve had some experience with this, but it still needs some basic knowledge of CFraming.
Before you read I would like to mention 2 things. First, if anyone knows a better way, please respond to this post, because this might not be the best way. Secondly, some of the code here might not be accurate. I can’t check on Roblox studio at this time, so just let me know if something isn’t working
In order to do this, I would recommend you do something like this
First, you’d need to get the CFrame Positions in where you wanted spikes to come out from.
This can be done in two different ways:
#1: if the boss stays in a fixed place (doesn’t move and stays in a box for example,) the best way would be setting up your own battlefield where spikes can spawn
StartXpos1 = ——-start x pos
StartXpos2 = ——-start x pos 2
-—— and so on with z (and y if needed)
—-— then, to get the CFrame that you want the spike to be in do something like this
Local RandomXPos = math.random(Positon.StartXPos1,Position.StartXPos2)
——- do it with y and z
—-— then finally
Spike.CFrame = CFrame.new(RandomXPos,RandomYPos,RandomZPos)
Now, the other way to do it is if the boss has different places it needs to move and be in, etc. if you need this, you would basically only change how the variables are set up. Instead of a pre set variable, you will need to get the position of the humanoidRootPart and then change those values slightly to match with how far you want the spikes to be
To do this, it would be something like
StartXpos1 = Boss.HumanoidRootPart.CFrame.X --- Change the value of the CFrame accordingly
That’s basically how you would position the spikes, but you would need a loop to see how many spikes you would make, and etc. doing this would be like
Local dead = false
local amountOfSpikes = 15
while not dead do — the boss should have a while true loop just to make everything repeat until the boss is dead. This is useful for multiple attacks, etc
Task.wait(3)
for i = 1,amountOfSpikes do
-—clone spike here
——- do the CFrame stuff mentioned above
end
end
If something doesn’t work, feel free to respond to this!