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

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.

01wait()
02 
03VELOCITY_MIN = 100
04VELOCITY_MAX = 125
05 
06SPREAD = 2
07OFFSET = Vector3.new(0, 0, 0)
08ANTI_GRAVITY = 0.995
09 
10-------------------------------
11 
12local tool = script.Parent
13 
14local part = Instance.new("Part")
15 
View all 77 lines...

this is the code that creates the projectiles.

0
code? User#23252 26 — 5y
0
i updated it iinaoriku 52 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

I'm sorry to tell you that this problem likely can't be fixed, it's a problem with the roblox engine. But you can use RayCasts to overcome this problem.

I would advise you to look more into RayCasting.

Ad

Answer this question