So what i mean is im trying to make a sword trail, but when you bring out your sword the "trail" is 4 studs above where it should be or ontop of the sword, if you do not know what i mean play this game: https://www.roblox.com/games/747028397/Sword-Trail-Test
Here is my code:
1 | while wait( 0.035 ) do |
2 | local part = Instance.new( "Part" , game.Workspace.Trails) |
3 | part.Name = "Trail-ClassicSword" |
4 | part.CanCollide = false |
5 | part.Anchored = true |
6 | part.CFrame = script.Parent.Handle.CFrame - Vector 3. new( 0 , 2 , 0 ) |
7 | part.Rotation = script.Parent.Handle.Rotation |
8 | part.Size = Vector 3. new( 0.1 , 4 , 0.1 ) |
9 | end |
If someone could help me that would be great, have a good day!! :)
Your problem is in like 6, here you try to subtract a vector3 from a cframe value, just use cframe
01 | while wait( 0.035 ) do |
02 | local part = Instance.new( "Part" ) |
03 | part.Name = "Trail-ClassicSword" |
04 | part.CanCollide = false |
05 | part.Anchored = true |
06 | part.Size = Vector 3. new( 0.1 , 4 , 0.1 ) |
07 | part.Parent = game.Workspace.Trails |
08 |
09 | --[[ As a good practice you should add the object to the parent after you get all the properties done]] -- |
10 | -- heres what you should do instead |
11 | part.CFrame = script.Parent.Handle.CFrame*CFrame.new( 0 , 2 , 0 ) |
12 | -- thats how you add to a cframe value |
13 | -- we also dont need the rotation code line because thats part of the cframe |
14 |
15 | game.Debris:AddItem(part, 1 ) |
16 | -- this is just to remove it or else you are going to have a lot of lag. |
17 | end |