Why does my projectile lag for a second?
Asked by
5 years ago Edited 5 years ago
https://gyazo.com/f7db9d8cf952b09ab493de8c6ba8dbf6
When the projectile is first created, you will notice a little pause. It's annoying, and I want to fix it, but I don't know what's causing it. Can someone help me make it perfectly smooth? Thanks.
07 | OFFSET = Vector 3. new( 0 , 0 , 0 ) |
12 | local tool = script.Parent |
14 | local part = Instance.new( "Part" ) |
18 | part.CanCollide = false |
19 | part.FormFactor = "Custom" |
20 | part.Size = Vector 3. new( 0.1 , 0.1 , 1.2 ) |
21 | part.TopSurface = "Smooth" |
22 | part.BottomSurface = "Smooth" |
25 | part.BrickColor = BrickColor.new( "White" ) |
28 | script.Parent.ShootProjectile.OnServerEvent:connect( function (player, pos) |
29 | script.Parent.Barrel.Muzzle.Enabled = true |
30 | script.Parent.Barrel.Muzzle 1. Enabled = true |
31 | script.Parent.Barrel.Muzzle 2. Enabled = true |
32 | script.Parent.Barrel.Muzzle 3. Enabled = true |
34 | script.Parent.Barrel.PointLight.Enabled = true |
36 | script.Parent.slide.Transparency = 1 |
37 | script.Parent.slide 2. Transparency = 0 |
39 | script.Parent.pistol_fire:Play() |
41 | if player.Character then |
42 | local shoot_from = script.Parent.Barrel |
44 | local missile = part:clone() |
45 | local spawnpos = (shoot_from.CFrame * CFrame.new(OFFSET)).p |
46 | missile.CFrame = CFrame.new(spawnpos, pos) * CFrame.Angles(math.random(-SPREAD, SPREAD)/ 90 , math.random(-SPREAD, SPREAD)/ 90 , 0 ) |
47 | missile.Velocity = missile.CFrame.lookVector * (math.random(VELOCITY_MIN, VELOCITY_MAX)) |
49 | local creator_tag = Instance.new( "ObjectValue" ) |
50 | creator_tag.Name = "creator" |
51 | creator_tag.Value = player |
52 | creator_tag.Parent = missile |
54 | script.Traits:clone().Parent = missile |
56 | local bforce = Instance.new( "BodyForce" ) |
57 | bforce.force = Vector 3. new( 0 , missile:GetMass() * 196.2 * ANTI_GRAVITY, 0 ) |
58 | bforce.Parent = missile |
61 | local missile_script = script.ProjectileScript:clone() |
62 | missile_script.Parent = missile |
64 | missile.Parent = game.Workspace |
65 | missile_script.Disabled = false |
67 | script.Parent.Barrel.Muzzle.Enabled = false |
68 | script.Parent.Barrel.Muzzle 1. Enabled = false |
69 | script.Parent.Barrel.Muzzle 2. Enabled = false |
70 | script.Parent.Barrel.Muzzle 3. Enabled = false |
72 | script.Parent.Barrel.PointLight.Enabled = false |
73 | script.Parent.slide.Transparency = 0 |
74 | script.Parent.slide 2. Transparency = 1 |
this is the code that creates the projectiles.