How can i see the explosion blast radius visually?

How can i make so i can see the bomb blast radius visually, i can’t find everywhere the solution so i assume no one ever asked this.

Make a part

local blastRadius = explosion.BlastRadius

local visual = Instance.new("Part",workspace)
visual.CanCollide = false
visual.Anchored = true
visual.Transparency = 0.8
visual.Shape = "Ball"
visual.Size = Vector3.new(blastRadius,blastRadius,blastRadius)

EDIT: or i found this: Explosion.Visible

2 Likes

I haven’t test the above method but for reference, i want the exactly blast radius not the Explosion.Visible

1 Like

I updated the script so everyone in the future don’t confuse

local Part = script.Parent
local explosion = script.Parent.Explosion
local blastRadius = explosion.BlastRadius

task.wait(5)
print("started")

local visual = Instance.new("Part")
visual.CanCollide = false
visual.Anchored = true
visual.Transparency = 0.8
visual.Shape = "Ball"
visual.Size = Vector3.new(blastRadius,blastRadius,blastRadius)
visual.Position = Part.Position
visual.Parent = Part
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.