Re: somebody has a script for a exploding hamborger
Posted: 16 Jun 2024 13:25 PM
theres a working script! -- this script should be parented to the hamburer part -- declare the function function ontouch(hit) local explosion = Instance.new("Explosion") explosion.Parent = game.Workspace explosion.Position = script.Parent.Position -- insert your number here explosion.BlastPressure = [Your number] script.Parent:remove() -- NOTE: this script will make the burger explode whenever anything touches #### If you want to make so the player touches it add some IF statements with functions. end -- make so it calls the function when touched script.Parent.Touched:connect(onto
|