AchieveStuffs

ok

Feb 17th, 2020
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. for i,v in pairs(game:GetService("Players")["LocalPlayer"].Character:GetDescendants()) do
  2. if v.Name == "GunSlow" and v:IsA("Folder") then
  3. v:Destroy()
  4. end
  5. end
  6.  
  7. game:GetService("Players")["LocalPlayer"].Character.DescendantAdded:Connect(function(obj)
  8. if obj:IsA("Folder") and obj.Name == "GunSlow" then
  9. wait(0)
  10. obj:Destroy()
  11. end
  12. end)
Add Comment
Please, Sign In to add comment