--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] game:GetService("Players").PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) character:WaitForChild("Humanoid").Died:Connect(function() player:Kick("You died!") end) end) end)game:GetService("StarterGui"):SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false)script.Parent.Touched:Connect(function(hit) if hit.Parent:FindFirstChildOfClass("Humanoid") then hit.Parent:FindFirstChildOfClass("Humanoid").Health = 0 end end)