--===================================================== -- TEMPO REAL DE ESPERA DA NOTIFICAÇÃO --===================================================== local WAIT_NOTIFICATION = 12 --===================================================== -- EXECUTA NOTIFICAÇÃO PRIMEIRO --===================================================== pcall(function() loadstring(game:HttpGet( "https://gist.githubusercontent.com/ph1130291480gamilcom-prog/586d296859361ba2f9e8e6e8bda9e890/raw/316d3ff702ada8ecb094133dcaf980db6e751211/Notifica%C3%A7%C3%A3o" ))() end) task.wait(WAIT_NOTIFICATION) --===================================================== -- SERVIÇOS --===================================================== local Players = game:GetService("Players") local TextChatService = game:GetService("TextChatService") local player = Players.LocalPlayer local lastSelectedPack=nil local buttonRefs={} --===================================================== -- PACKS --===================================================== local PACKS={ ["Adidas Sports"]={WalkAnim=18537392113,RunAnim=18537384940,JumpAnim=18537380791,FallAnim=18537367238,SwimIdle=18537387180,Swim=18537389531,Animation1=18537376492,Animation2=18537371272,ClimbAnim=18537363391}, ["Adidas Community"]={WalkAnim=122150855457006,RunAnim=82598234841035,JumpAnim=75290611992385,FallAnim=98600215928904,SwimIdle=109346520324160,Swim=133308483266208,Animation1=122257458498464,Animation2=102357151005774,ClimbAnim=88763136693023}, ["Adidas Aura"]={WalkAnim=83842218823011,RunAnim=118320322718866,JumpAnim=109996626521204,FallAnim=95603166884636,SwimIdle=94922130551805,Swim=134530128383903,Animation1=110211186840347,Animation2=114191137265065,ClimbAnim=97824616490448}, ["Zombie"]={WalkAnim=10921355261,RunAnim=616163682,JumpAnim=10921351278,FallAnim=10921350320,SwimIdle=10921353442,Swim=10921352344,Animation1=10921344533,Animation2=10921344533,ClimbAnim=10921343576}, ["Ninja"]={Run=656118852,Walk=656121766,Jump=656117878,Fall=656115606,Swim=656119721,SwimIdle=656121397,Climb=656114359,Idle={656117400,656118341,886742569}}, ["Levitation"]={Run=616010382,Walk=616013216,Jump=616008936,Fall=616005863,Swim=616011509,SwimIdle=616012453,Climb=616003713,Idle={616006778,616008087,886862142}} } --===================================================== -- APPLY PACK --===================================================== local function applyPack(name) if not PACKS[name] then return end lastSelectedPack=name local char=player.Character or player.CharacterAdded:Wait() local anim=char:WaitForChild("Animate",10) if not anim then return end anim.Disabled=true local p=PACKS[name] local function set(folder,id) local f=anim:FindFirstChild(folder) if f and id then local a=f:FindFirstChildOfClass("Animation") or Instance.new("Animation",f) a.AnimationId="rbxassetid://"..id end end set("walk",p.WalkAnim or p.Walk) set("run",p.RunAnim or p.Run) set("jump",p.JumpAnim or p.Jump) set("fall",p.FallAnim or p.Fall) set("climb",p.ClimbAnim or p.Climb) set("swim",p.Swim) set("swimidle",p.SwimIdle) set("idle",p.Idle and p.Idle[1] or p.Animation1) task.wait() anim.Disabled=false end player.CharacterAdded:Connect(function() if lastSelectedPack then task.wait(1) applyPack(lastSelectedPack) end end) --===================================================== -- WINDUI --===================================================== local WindUILib=loadstring(game:HttpGet( "https://github.com/Footagesus/WindUI/releases/latest/download/main.lua" ))() local Window=WindUILib:CreateWindow({ Title="stronger every", Icon="home", Author="Dev nzxphexe", Size=UDim2.fromOffset(500,420), Transparent=true, SideBarWidth=160 }) --===================================================== -- ABA ANIMAÇÕES --===================================================== local MainTab=Window:Tab({ Title="Animações", Icon="play" }) MainTab:Section({ Title="Lista de Packs", Icon="list" }) for pack,_ in pairs(PACKS) do buttonRefs[pack]=MainTab:Button({ Title=pack, Callback=function() applyPack(pack) for n,b in pairs(buttonRefs) do b:Set(n==pack and n.." (Ativo)" or n) end end }) end --===================================================== -- ABA COMUNIDADE --===================================================== local CommunityTab=Window:Tab({ Title="Comunidade", Icon="users" }) CommunityTab:Section({ Title="Redes", Icon="globe" }) CommunityTab:Button({ Title="Instagram", Callback=function() setclipboard("https://www.instagram.com/silent_exez") WindUILib:Notify({Title="Copiado",Content="Instagram copiado",Duration=3}) end }) CommunityTab:Button({ Title="Discord", Callback=function() setclipboard("https://discord.gg/NMwQZkTBk") WindUILib:Notify({Title="Copiado",Content="Discord copiado",Duration=3}) end }) --===================================================== -- CHAT --===================================================== local ch=TextChatService:FindFirstChild("RBXGeneral",true) if ch then ch:SendAsync("Script carregado por nzxphexe") end