Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- print("made by T0ster156 on roblox.com")
- local plr = game:GetService("Players").LocalPlayer
- script.Parent = plr
- if plr.Character then
- local char = plr.Character
- if char:FindFirstChildOfClass("Humanoid") then
- local hum = char:FindFirstChildOfClass("Humanoid")
- repeat
- local tracks = hum:GetPlayingAnimationTracks()
- if tracks then
- for i,v in pairs(tracks) do
- v:AdjustSpeed(10)
- task.wait(0.01)
- end
- end
- task.wait(0.1)
- until hum.Health < 1
- end
- end
- plr.CharacterAppearanceLoaded:Connect(function(char)
- if char:FindFirstChildOfClass("Humanoid") then
- local hum = char:FindFirstChildOfClass("Humanoid")
- repeat
- local tracks = hum:GetPlayingAnimationTracks()
- if tracks then
- for i,v in pairs(tracks) do
- v:AdjustSpeed(10)
- task.wait(0.01)
- end
- end
- task.wait(0.1)
- until hum.Health < 1
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement