local plr = game.Players.LocalPlayer local ui = Instance.new("ScreenGui") ui.Name = "CombatGodsAnims" ui.ResetOnSpawn = false ui.Parent = plr:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 593, 0.193, 0) frame.Position = UDim2.new(0.3, 0, 0.193, 0) frame.BackgroundColor3 = Color3.new(255, 255, 255) frame.Parent = ui frame.Name = "Frame" local dragger = Instance.new("UIDragDetector") dragger.Parent = frame local closeui = Instance.new("TextButton") closeui.Name = "closeui" closeui.BackgroundColor3 = Color3.fromRGB(255, 0, 0) closeui.Position = UDim2.new(0.442, 0, 0.403, 0) closeui.Size = UDim2.new(0, 70, 0, 50) closeui.Text = "X" closeui.Parent = frame local junanimbutton = Instance.new("TextButton") junanimbutton.Name = "Jun" junanimbutton.BackgroundColor3 = Color3.fromRGB(85, 0, 0) junanimbutton.Position = UDim2.new(0.046, 0, 0.136, 0) junanimbutton.Size = UDim2.new(0, 200, 0, 50) junanimbutton.Text = "jun" junanimbutton.TextColor3 = Color3.fromRGB(255, 255, 255) junanimbutton.Parent = frame local shinjibuttonanim = Instance.new("TextButton") shinjibuttonanim.Name = "Shinji" shinjibuttonanim.BackgroundColor3 = Color3.fromRGB(255, 255, 0) shinjibuttonanim.Position = UDim2.new(0.636, 0, 0.136, 0) shinjibuttonanim.Size = UDim2.new(0, 200, 0, 50) shinjibuttonanim.Text = "shinji" shinjibuttonanim.Parent = frame local text = Instance.new("TextLabel") text.Name = "TextLabel" text.BackgroundTransparency = 1 text.Position = UDim2.new(0, 0, 0, 0) text.Size = UDim2.new(0, 593, 0, 0) text.Text = "combat gods animations [R6 ONLY]" text.Parent = frame local currentTrack = nil local function isAnimPlaying() return currentTrack and currentTrack.IsPlaying end local function junanim() if isAnimPlaying() then return end local char = plr.Character local hum = char:WaitForChild("Humanoid") local animator = hum:WaitForChild("Animator") local anim = Instance.new("Animation") anim.AnimationId = "rbxassetid://129688276012765" local idletrack = animator:LoadAnimation(anim) currentTrack = idletrack idletrack:Play() idletrack.Stopped:Connect(function() if currentTrack == idletrack then currentTrack = nil end end) end local function shinji() if isAnimPlaying() then return end local char = plr.Character local hum = char:WaitForChild("Humanoid") local animator = hum:WaitForChild("Animator") local anim = Instance.new("Animation") anim.AnimationId = "rbxassetid://87821991077881" local idletrack = animator:LoadAnimation(anim) currentTrack = idletrack idletrack:Play() idletrack.Stopped:Connect(function() if currentTrack == idletrack then currentTrack = nil end end) end closeui.MouseButton1Click:Connect(function() ui:Destroy() end) junanimbutton.MouseButton1Click:Connect(junanim) shinjibuttonanim.MouseButton1Click:Connect(shinji) warn("script made by Invinciballs and LPS2025")