Please could you help me it would be appreciated. But I need the person to explain it CLEARLY and PROPERLY and it should be ACURATE otherwise I will be struggling. Or send me the video and tell me step by step how to create or just tell me a script or how to make it either way. Thank You.
I don’t like spoonfeeding and someone will probably just give you the script anyway
use TweenService it basically smoothly increases/decreases a value to a specified value
You would use
(this would be on a local script btw)
local player = game.Players.LocalPlayer
local mouse = player:GetMouse()
local ExplosionLength = 10 -- how long and big the explosion shoukd become
local TweenService = game:GetService('TweenService')
mouse.Button1Down:Connect(function()
-- creates the explosion part
local Explosion = Instance.new('Part')
Explosion.Shape = Enum.PartType.Sphere
Explosion.BrickColor = BrickColor.new('Really red')
Explosion.Position = mouse.Hit.p
Explosion.Size = Vector3.new(1,1,1)
Explosion.Anchored = true
-- expands the size of the explosion
TweenService:Create(Explosion, TweenInfo.new(ExplosionLength), {Size = Vector3.new(ExplosionLength, ExplosionLength, ExplosionLength)}):Play()
Explosion.Parent = workspace
wait(ExplosionLength)
Explosion:Destroy()
end)
The script @legs_v sent you should create an ‘2006’ explosion. It’s a simple sphere that grows when you click. You should me more clear with what you mean by modern and old explosions.
Video to what I mean by (MODERN explosion). I used the script but when I shoot it dosen’t seem to work here is the video: robloxapp-20210509-1808509.wmv (747.6 KB)
Video to what I mean by (MODERN explosion). I used the script but when I shoot it dosen’t seem to work here is the video: robloxapp-20210509-1808509.wmv (747.6 KB)
Does the red sphere just appear and disappear or does it appear, get larger slowly and then disappear? (You can show me a video of it since I don’t really know how 2006 explosions look like)