Advertisement
pa1nx9

survive the night nocooldowns

Sep 8th, 2021
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. local wait = task.wait -- ALLTHESEHEARTBEATFUNCTIONS
  2.  
  3. local LocalPlayer = game:GetService("Players").LocalPlayer
  4. local Character = LocalPlayer.Character
  5. if Character then -- ???
  6. local Kit = Character:FindFirstChild("Kit")
  7. if Kit then -- ??
  8. local LocalPart = Kit:FindFirstChild("LocalPart")
  9. if LocalPart then -- ?
  10. LocalPart.ChildAdded:Connect(function(Child)
  11. wait(0) -- if you comment this roblox will start crying about no parents and it won't work
  12. local Name = Child.Name
  13. if Name == "NewTaunt" or Name == "LampCD" then
  14. Child:Destroy() -- please officer i did not taunt i promise
  15. end
  16. end)
  17. end
  18. end
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement