Medal.tv | #1 Free Clip Platform
Watch Untitled and millions of other Roblox videos on Medal, the largest Game Clip Platform.
1 messages · Page 1 of 1 (latest)
Watch Untitled and millions of other Roblox videos on Medal, the largest Game Clip Platform.
no
imma research some more about that
Hey everybody! Click to view key information for existing usersThe module’s version is currently Ver 13.2.0 released on 12 November 2020** Changelogs can be viewed HERE Support will only be given for the current version. Certain public toolkits that include FastCast may be using an out of date version. Please check the version in the main mod...
I applied this to my projectile, but instead of the explosion going off too early it now goes off a little too late (like 0.1 sec). I did a quick test and replaced some parts of the example gun with my projectile parts. It was working fine until I replaced the spark effect with my explosion
Watch particle test and millions of other Roblox videos on Medal, the largest Game Clip Platform.
How come the spark effect (the blue one) activates at the right moment but my explosion gets a little delayed?
I replaced this part of the script ```lua
function MakeParticleFX(position, normal)
local attachment = Instance.new("Attachment")
attachment.CFrame = CFrame.new(position, position + normal)
attachment.Parent = workspace.Terrain
local particle = ImpactParticle:Clone()
particle.Parent = attachment
Debris:AddItem(attachment, particle.Lifetime.Max)
particle.Enabled = true
wait(0.05)
particle.Enabled = false
end
with this ```lua
function explosion(explosionPos)
local newExplosion = Instance.new("Part")
newExplosion.Anchored = true
newExplosion.Transparency = 1
newExplosion.Position = explosionPos
newExplosion.Parent = workspace
newExplosion.CanCollide = false
local explosionPhase1 = rs.FireballParts.Explosion.ExplosionPhase1:Clone()
explosionPhase1.Parent = newExplosion
Does someone know what the problem is? Or do I need to provide more info?
I figured it out, it had something to do with the emission of the particles