So, I am wondering if it is possible to make players not die to explosions if they touch a part. So they get a explosion immunity effect once a part is touched.
So ONLY players with this effect don't die to explosions BUT can still die to PvP weapons! (Swords, Guns etc.)
If it is possible it will really help with my upcoming summer update for reworking a item in my current biggest game!
There's a property in Explosions called "DestroyJointRadiusPercent". If you set it to 0 the explosion should do 0 damage to the player.
local explosion = Instance.new("Explosion") explosion.DestroyJointRadiusPercent = 0 explosion.Parent = workspace
local explosion = --whateverexplosion explosion.DestroyJointRadiusPercent = 0