Can fastcast cast multiple rays?

  1. What do you want to achieve?
    the title explains it all, i need the fastcast module to cast multiple rays instead of one.

  2. What is the issue?
    Well, the module only casts one ray.

Did you try using a for loop for it

local caster = --your caster
local raycastCount = 6
for _ = 1, raycastCount do
   caster:Cast()
end
1 Like

i didnt make myself clear, i meant multiple rays in an instance

the green dots are attachments and the red lines are the rays

That’s what the code is doing? Just cast from a different position and direction each time.

Could you elaborate more?
When a cast is fired it creates an instance as well, so its just another bullet.