Advertisement
Dark_Agent

FE Zombie Script (R15)

Feb 27th, 2025 (edited)
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.19 KB | Gaming | 0 0
  1. -- Loadstring: loadstring(game:HttpGet('https://pastebin.com/raw/0GUbHyeH'))()
  2.  
  3. -- Original: "https://scriptblox.com/script/Universal-Script-FE-Zombie-Script-30491".
  4. -- Credits: SystemBroken, Infinite Yield, Roblox.
  5. -- Features: Have Attack-Tool (but it does not have Fling or Damage System lol).
  6.  
  7. _G.idle1 = "3489171152"
  8. _G.idle2 = "3489171152" --idk
  9. _G.walk = "3489174223"
  10. _G.run = "3489173414"
  11. _G.jump = "616161997"
  12. _G.climb = "616156119"
  13. _G.fall = "616157476"
  14.  
  15. loadstring(game:HttpGet("https://pastebin.com/raw/E6uL974H"))()
  16. wait(1.5)
  17.  
  18. local AttackTool = Instance.new("Tool")
  19.  
  20. _G.PlayAnim = function(id, time, speed)
  21.     local Players = game:GetService("Players")
  22.     local plr = Players.LocalPlayer
  23.     -- i used these scripts from System Broken so dont hate pls im still learning lua scripting on solo
  24.     pcall(function()
  25.         plr.Character.Animate.Disabled = false
  26.         local hum = plr.Character.Humanoid
  27.         local animtrack = hum:GetPlayingAnimationTracks()
  28.         for i, track in pairs(animtrack) do
  29.             track:Stop()
  30.         end
  31.         plr.Character.Animate.Disabled = true
  32.         local Anim = Instance.new("Animation")
  33.         Anim.AnimationId = "rbxassetid://"..id
  34.         local loadanim = hum:LoadAnimation(Anim)
  35.         loadanim:Play()
  36.         loadanim.TimePosition = time
  37.         loadanim:AdjustSpeed(speed)
  38.         loadanim.Stopped:Connect(function()
  39.             plr.Character.Animate.Disabled = false
  40.         end)
  41.     end)
  42. end
  43.  
  44. AttackTool.Name = "Attack"
  45. AttackTool.RequiresHandle = false
  46.  
  47. AttackTool.Activated:Connect(function()
  48.     -- PlayAnim(id, time, speed)
  49.     _G.PlayAnim(3489169607, 0, 0.9) --default (0, 1, 1), also 3489169607 that anim gives like zombie attack anim.
  50.    
  51.     local Char = game.Players.LocalPlayer.Character
  52.     local Hum = Char:FindFirstChildOfClass("Humanoid") or Char:FindFirstChildOfClass("AnimationController")
  53.  
  54.     wait(1)
  55.  
  56.     for i, v in next, Hum:GetPlayingAnimationTracks() do
  57.         v:Stop()
  58.     end
  59. end)
  60.  
  61. AttackTool.Parent = game.Players.LocalPlayer.Backpack
  62.  
  63. wait(1.0)
  64. print("FE Zombie Loaded :3")
  65. print("enjoy to trolling peoples maybe scaring kids 😈")
  66. print("Rawrr i'm zombie from Half-Life 2!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement