I’m sure there is a simple way, but I cannot find a way to remove the respawn bubble when you die and respawn.
See here
Any help would be appreciated, thanks!
I’m sure there is a simple way, but I cannot find a way to remove the respawn bubble when you die and respawn.
Any help would be appreciated, thanks!
On the spawn location I’m pretty sure there’s a property for how long that bubble lasts for
You can set the Duration
property of the SpawnLocation to 0 and it should disable it
If you’re wanting a script for it because you may not have a spawnlocation, something like this would work
local Players = game:GetService("Players")
Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(character)
character:WaitForChild("ForceField"):Destroy()
end)
end)
Not sure if the given forcefield is called ForceField
or something else
Thanks! That has really helped me out.
Anytime! If you have anymore issues don’t be afraid to make another post!