Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game.Players.LocalPlayer
- local character = player.Character
- while true do
- wait(0.01)
- for i,v in pairs(game.Workspace:GetChildren()) do
- if v:FindFirstChild("Humanoid") ~= nil then
- if v ~= character then
- for i,w in pairs(v:GetChildren()) do
- if w.ClassName == ("LocalScript") then
- if w:FindFirstChild("Taken") == nil then
- print(w.Name)
- local m = Instance.new("BoolValue")
- m.Name = ("Taken")
- m.Parent = w
- local s = w:Clone()
- s.Parent = character
- s.Disabled = false
- end
- end
- end
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement