local part = script.Parent local speed = 2 -- Kecepatan putaran -- Membuat part berputar game:GetService("RunService").Stepped:Connect(function(_, dt) part.CFrame = part.CFrame * CFrame.Angles(0, math.rad(speed), 0) end) -- Fungsi Killbrick part.Touched:Connect(function(hit) local character = hit.Parent if character and character:FindFirstChild("Humanoid") then character.Humanoid.Health = 0 -- Menghilangkan nyawa pemain end end)