okEi1988

SCRIPT!

Apr 24th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. script.Parent = nil
  2. Give = function(Player)
  3. Player.Changed:connect(function(Property)
  4. wait()
  5. if Property == "Character" and Player.Character ~= nil and Player.Character:FindFirstChild("Humanoid") ~= nil and Player.Character.Humanoid.Health > 0 then
  6. for _, Part in pairs(_G.Weapons or script:GetChildren()) do
  7. pcall(function()
  8. local Part2 = Part:Clone()
  9. Part2.Player.Value = Player
  10. Part2.Disabled = false
  11. Part2.Parent = game:GetService("Workspace")
  12. end)
  13. end
  14. end
  15. end)
  16. end
  17. for _, Player in pairs(game:GetService("Players"):GetPlayers()) do
  18. pcall(function() Give(Player) end)
  19. end
  20. game:GetService("Players").PlayerAdded:connect(Give)
Add Comment
Please, Sign In to add comment