Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Farewell Infortality.
- -- Version: 2.82
- -- Instances:
- local AnimFinder = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local ScrollingFrame = Instance.new("ScrollingFrame")
- local TextLabel = Instance.new("TextLabel")
- local Find = Instance.new("TextButton")
- local Clear = Instance.new("TextButton")
- --Properties:
- AnimFinder.Name = "AnimFinder"
- AnimFinder.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- AnimFinder.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = AnimFinder
- Frame.BackgroundColor3 = Color3.new(0, 0, 0)
- Frame.BackgroundTransparency = 0.30000001192093
- Frame.BorderColor3 = Color3.new(1, 1, 1)
- Frame.Position = UDim2.new(0.305451125, 0, 0.283783793, 0)
- Frame.Size = UDim2.new(0, 307, 0, 404)
- Frame.ZIndex = 10
- ScrollingFrame.Parent = Frame
- ScrollingFrame.BackgroundColor3 = Color3.new(0, 0, 0)
- ScrollingFrame.BackgroundTransparency = 0.5
- ScrollingFrame.BorderColor3 = Color3.new(1, 1, 1)
- ScrollingFrame.Position = UDim2.new(0, 0, 0.0915841609, 0)
- ScrollingFrame.Size = UDim2.new(0, 188, 0, 367)
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
- TextLabel.BackgroundTransparency = 0.5
- TextLabel.BorderColor3 = Color3.new(1, 1, 1)
- TextLabel.Size = UDim2.new(0, 307, 0, 37)
- TextLabel.ZIndex = 3
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "Animation Finder by eee#4138"
- TextLabel.TextColor3 = Color3.new(1, 1, 1)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14
- TextLabel.TextWrapped = true
- Find.Name = "Find"
- Find.Parent = Frame
- Find.BackgroundColor3 = Color3.new(0, 0, 0)
- Find.BackgroundTransparency = 0.40000000596046
- Find.BorderColor3 = Color3.new(1, 1, 1)
- Find.BorderSizePixel = 0
- Find.Position = UDim2.new(0.615635157, 0, 0.0915841609, 0)
- Find.Size = UDim2.new(0, 118, 0, 48)
- Find.ZIndex = 2
- Find.Font = Enum.Font.SourceSans
- Find.Text = "Find Animations"
- Find.TextColor3 = Color3.new(1, 1, 1)
- Find.TextScaled = true
- Find.TextSize = 14
- Find.TextWrapped = true
- Clear.Name = "Clear"
- Clear.Parent = Frame
- Clear.BackgroundColor3 = Color3.new(0, 0, 0)
- Clear.BackgroundTransparency = 0.40000000596046
- Clear.BorderColor3 = Color3.new(1, 1, 1)
- Clear.BorderSizePixel = 0
- Clear.Position = UDim2.new(0.615635157, 0, 0.264851511, 0)
- Clear.Size = UDim2.new(0, 118, 0, 48)
- Clear.ZIndex = 2
- Clear.Font = Enum.Font.SourceSans
- Clear.Text = "Clear Table"
- Clear.TextColor3 = Color3.new(1, 1, 1)
- Clear.TextScaled = true
- Clear.TextSize = 14
- Clear.TextWrapped = true
- -- Scripts:
- function SCRIPT_PKAY89_FAKESCRIPT() -- Frame.LocalScript
- local script = Instance.new('LocalScript')
- script.Parent = Frame
- local Frame=script.Parent
- Frame.Parent.Parent=game.CoreGui
- local ScrollFrame=Frame.ScrollingFrame
- local list={}
- local Find=Frame.Find
- local Clear=Frame.Clear
- Frame.Draggable=true
- Frame.Active=true
- local TweenService = game:GetService("TweenService")
- Find.MouseButton1Click:Connect(function()
- for i,v in pairs(workspace:GetDescendants()) do
- if v:IsA("Animation")then
- table.insert(list,v)
- end
- end
- for i,v in pairs(game:GetService("ReplicatedStorage"):GetDescendants()) do
- if v:IsA("Animation")then
- table.insert(list,v)
- end
- end
- for i,v in pairs(game.Lighting:GetDescendants()) do
- if v:IsA("Animation")then
- table.insert(list,v)
- end
- end
- for i,v in pairs(game:GetService("ReplicatedStorage"):GetDescendants()) do
- if v:IsA("Animation")then
- table.insert(list,v)
- end
- end
- for i,v in pairs(list)do
- for i,v1 in pairs(list)do
- if v1.Name==v.Name then
- table.remove(list,i)
- end
- end
- end
- for i,v in pairs(list)do
- ScrollFrame.CanvasSize=UDim2.new(0,0,i/10,0)
- end
- for i,v in pairs(list)do
- local Item=Instance.new("TextLabel",ScrollFrame)
- Item.Text=v.Name
- Item.Size=UDim2.new(0,140,0,40)
- Item.TextScaled=true
- Item.BackgroundTransparency=1
- Item.TextTransparency=1
- Item.BackgroundColor3=Color3.fromRGB(0,0,0)
- Item.Position=UDim2.new(0,0,0.037*0,-40+i*40)
- Item.TextColor3=Color3.new(1,1,1)
- Item.BorderSizePixel=0
- local Anim=game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(v)
- Anim.Priority=Enum.AnimationPriority.Action
- Anim.Looped=true
- local Button=Instance.new("TextButton",ScrollFrame)
- Button.Position=UDim2.new(0,140,0.037*0,-40+i*40)
- Button.Size=UDim2.new(0,30,0,40)
- Button.Text=">"
- Button.BackgroundTransparency=1
- Button.TextTransparency=1
- Button.TextScaled=true
- Button.BackgroundColor3=Color3.fromRGB(10,10,10)
- Button.TextColor3=Color3.new(1,1,1)
- Button.BackgroundTransparency=.5
- Button.BorderSizePixel=0
- local goal = {}
- goal.BackgroundTransparency=0
- goal.TextTransparency=0
- local tween = TweenService:Create(Button, TweenInfo.new(3), goal)
- tween:Play()
- local tween = TweenService:Create(Item, TweenInfo.new(2), goal)
- tween:Play()
- Button.MouseButton1Click:Connect(function()
- if Button.Text==(">")then
- Anim:Play()
- Button.Text="="
- else
- Anim:Stop()
- Button.Text=">"
- end
- end)
- end
- end)
- Clear.MouseButton1Click:Connect(function()
- for i,v in pairs(list)do
- table.remove(list,i)
- end
- for i,v in pairs(ScrollFrame:GetChildren())do
- coroutine.resume(coroutine.create(function()
- local goal = {}
- goal.BackgroundTransparency=1
- goal.TextTransparency=1
- local tween = TweenService:Create(v, TweenInfo.new(2), goal)
- tween:Play()
- wait(2)
- v:Destroy()
- end))
- end
- end)
- end
- coroutine.resume(coroutine.create(SCRIPT_PKAY89_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment