Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to create a zig zag effect?

Asked by
d1_rek 46
4 years ago

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

01local 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
13    Spell = nil --DISABLE SPELL
14 
15for Movement = 1, math.huge do
View all 34 lines...

I tried changing the

1if not hit then
2SpellPart.CFrame = SpellPart.CFrame + SpellPart.CFrame.LookVector * SpellSpeed

to

1if not hit then
2SpellPart.CFrame = SpellPart.CFrame + SpellPart.CFrame.LookVector * SpellSpeed
3SpellPart.CFrame = SpellPart.CFrame + Vector3.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?

Answer this question