https://drive.google.com/drive/folders/1PP5iNxzDOzmUDtYM8zqPkgfNUuaKKQnh
By the way, the falling parts have no effect on it.
Paste inside a Server Script:
game:GetService("Players").PlayerAdded:Connect(function(Player)
Player.CharacterAdded:Connect(function(Char)
local Hum = Char:WaitForChild("Humanoid")
Hum:GetPropertyChangedSignal("Health"):Connect(function()
if (Hum.Health <= 0) then
for i,v in pairs(Char:GetChildren()) do
if (v:IsA("BasePart")) then
v.CanCollide = true
end
end
end
end)
end)
end)
1 Like
This was happening yesterday in some games too. I think this is a Roblox bug.
1 Like
Thanks, but where do i put it?
Do i put it in starterCharacterScripts?
EDIT: For anyone else who has this issue, you put the script in StarterCharacterScripts.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.