local KooKoo = game.ReplicatedStorage:WaitForChild("SendMemory"):WaitForChild("Script"):WaitForChild("memorygui") -- getting local imageLabel = KooKoo:WaitForChild("ImageLabel") local smi = KooKoo:WaitForChild("smile") local Ti = KooKoo:WaitForChild("smile"):WaitForChild("Timer") local Ti1 = Ti:WaitForChild("1") local Ti2 = Ti:WaitForChild("2") local Fog = smi:WaitForChild("fog") local hand = smi:WaitForChild("hand") local tick = KooKoo.Frame:WaitForChild("ImageLabel") -- custom time imageLabel.ImageColor3 = Color3.fromRGB(255, 0, 0) smi.ImageColor3 = Color3.fromRGB(255, 0, 0) smi.Image = "rbxassetid://114769491028267" Ti.ImageColor3 = Color3.fromRGB(255, 0, 0) Ti.Image = "rbxassetid://131147497837666" Ti1.ImageColor3 = Color3.fromRGB(255, 0, 0) Ti1.Image = "rbxassetid://131147497837666" Ti2.ImageColor3 = Color3.fromRGB(255, 0, 0) Ti2.Image = "rbxassetid://131147497837666" Fog.ImageColor3 = Color3.fromRGB(255, 0, 0) hand.ImageColor3 = Color3.fromRGB(255, 0, 0) hand.Image = "rbxassetid://108681276357403" tick.ImageColor3 = Color3.fromRGB(255, 0, 0) KooKoo.LocalScript.Money.SoundId = "rbxassetid://511340819" KooKoo.LocalScript:WaitForChild("Time Tick").SoundId = "rbxassetid://99112868568933" KooKoo.LocalScript:WaitForChild("Windows xp Ding").SoundId = "rbxassetid://88761861442974" KooKoo.LocalScript:WaitForChild("wrong answer").SoundId = "rbxassetid://9126161287" -- repeat parti (delete everything below when customizing unless doing something with the color) local player = game.Players.LocalPlayer while true do local memoryGui = player:FindFirstChild("PlayerGui"):FindFirstChild("memorygui") if memoryGui then local smile = memoryGui:FindFirstChild("smile") if smile then smile.ImageColor3 = Color3.fromRGB(255, 0, 0) end end task.wait(0.01) end