How would these fireworks be created?

hi.
I am sure many of you have seen the bloxburg fireworks, or similar ones seen in games like DeathRun
image

How would you go about creating fireworks with this specific look, where its like streaks in the sky, rather than the common sparkly roblox fireworks?

This is the script that I have ATM:
local Fireworks = script.Parent
local Firework = Fireworks.Parent

local FireworkPart = Firework.FireworkPart
local FireworkTrail = Firework.FireworkTrail
local FireworkLight = Firework.FireworkLight

local Top = Firework.Top
local Bottom = Firework.Bottom

local CurrentLifetime = Firework.Lifetime.Value

local FireworkPartTrail = FireworkTrail.FireworkTrailPart
local FireworkLightTrail = FireworkTrail.FireworkTrailLight

local Colors = {“Really black”, “Really red”, “Really violet”, “Really blue”, “Really sky blue”, “Really cyan”, “Really green”, “Really lime”, “Really yellow”, “Really orange”, “Really pink”}
local CurrentColor = Firework.Color.Value

local function FireworkFade(FireworkPart)
local FireworkFade = Instance.new(“NumberValue”)
FireworkFade.Name = “FireworkFade”
FireworkFade.Value = 0
FireworkFade.Parent = FireworkPart
end

local function FadeIn(FireworkPart)
while FireworkPart.FireworkFade.Value <= 1 do
FireworkPart.FireworkFade.Value = FireworkPart.FireworkFade.Value + 0.01
wait(0.1)
end
end

local function FadeOut(FireworkPart)
while FireworkPart.FireworkFade.Value >= 0 do
FireworkPart.FireworkFade.Value = FireworkPart.FireworkFade.Value - 0.01
wait(0.1)
end
end

local function CreateTrail(FireworkPart, FireworkTrail)
local Trail = FireworkTrail:Clone()
Trail.FireworkTrailPart.BrickColor = BrickColor.new(Colors[CurrentColor])
Trail.FireworkTrailLight.BrickColor = BrickColor.new(Colors[CurrentColor])
Trail.FireworkTrailPart.

1 Like

Hey there! It might be the new Flipbook Particles, maybe even just a video playing, but its most likely a bunch of trails behind a small object that has had a lot of force added to it, this also isn’t the right section to be asking as this is Scripting Help, and should probably be in Art Design Support

Cheers!

sounds good thank you.
I am wanting to know more about the scripting side of the fireworks / how to achieve that look in regards to scripting, which is why I posted here.
Sorry for the confusion.

@xDeltaXen Script should work then, although this will only create the fire work part you will have to add force to them.