--[[ ======================================================== = MOHON DIBACA! = ======================================================== SCRIPT INI DI SHARE SECARA GRATIS DAN DILARANG KERAS DIPERJUAL BELIKAN!!! CARA PASANG : BUAT PART SEUAI KEINGINAN KALIAN TERUS ATUR WARNA AWALNYA MAU WARNA APA, TERUS DI DALAM PART BUAT SCRIPT LALU TEMPELKAN SCRIPT INI #CILAA LINK DISCORD (https://discord.gg/Qzwf4VR9UU) ======================================================== ]] local part = script.Parent local originalColor = part.Color local touchColor = Color3.fromRGB(247, 0, 255) -- UBAH WARNA SESUAI KEINGINAN KALIAN DI SINI local touchCount = 0 part.Touched:Connect(function(hit) local character = hit.Parent local humanoid = character:FindFirstChild("Humanoid") local root = character:FindFirstChild("HumanoidRootPart") if humanoid and root and hit:IsDescendantOf(character) then touchCount += 1 part.Color = touchColor end end) part.TouchEnded:Connect(function(hit) local character = hit.Parent local humanoid = character:FindFirstChild("Humanoid") if humanoid then touchCount -= 1 if touchCount <= 0 then touchCount = 0 part.Color = originalColor end end end)