How to create a zig zag effect?
I'm making a harry potter wand module and basically I want it to go in a zigzag path, instead of a straight line https://gyazo.com/0ecb8202f4121e86416f9424c754d718. This is my current script
01 | local SpellPart = script.Assets.Projectile:Clone() |
02 | SpellPart.Anchored = true |
03 | SpellPart.Parent = game.Workspace.Spells |
04 | SpellPart.Position = Char.Wand.Effect.Position |
05 | SpellPart.CanCollide = false |
06 | SpellPart.CFrame = CFrame.new(SpellPart.Position,Char.MouseTarget.Value) |
07 | SpellPart.Trails.BaseTrail.Enabled = true |
08 | SpellPart.Trails.BaseTrail.Color = ColorSequence.new(Properties.Color) |
09 | SpellPart.Trails.OuterTrail.Enabled = true |
10 | SpellPart.Trails.OuterTrail.Color = ColorSequence.new(Properties.Color) |
11 | local IgnoreList = { Char,SpellPart,Char.Wand.Effect,Char.Wand.Handle } |
12 | local SpellSpeed = Properties.Speed/ 15 |
15 | for Movement = 1 , math.huge do |
16 | if not SpellPart then break end |
19 | local SpellRay = Ray.new(SpellPart.Position, SpellPart.CFrame.LookVector * SpellSpeed) |
20 | local hit,hitpos,hitnormal = workspace:FindPartOnRayWithIgnoreList(SpellRay, IgnoreList, false , true ) |
22 | SpellPart.CFrame = SpellPart.CFrame + SpellPart.CFrame.LookVector * SpellSpeed |
I tried changing the
2 | SpellPart.CFrame = SpellPart.CFrame + SpellPart.CFrame.LookVector * SpellSpeed |
to
2 | SpellPart.CFrame = SpellPart.CFrame + SpellPart.CFrame.LookVector * SpellSpeed |
3 | SpellPart.CFrame = SpellPart.CFrame + Vector 3. new(math.random(- 1 , 1 ),math.random(- 1 , 1 ),math.random(- 1 , 1 ) |
But it ended up not hitting at the right spot. Any ideas what I can do?