Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- plr = game.Players.LocalPlayer
- mouse = plr:GetMouse()
- mouse.Button1Down:connect(function()
- target = mouse.Target
- if target.Name == "Head" then
- inject = game.Players:GetPlayerFromCharacter(target.Parent)
- print("Injected into "..inject.Name)
- gui = inject.PlayerGui
- scripts = {}
- gc = gui:GetChildren()
- for i=1, #gc do
- wait(0.01)
- if gc[i].ClassName == "LocalScript" then
- table.Insert(scripts,gc[i])
- end
- print("These scripts were found:")
- for i=1, #scripts do
- wait(0.01)
- print(scripts[i])
- end
- print("Chat a script name to run it.")
- plr.Chatted:connect(function(msg)
- gui[msg]:Clone().Parent = player.PlayerGui
- end)
- end
- end
- end)
Add Comment
Please, Sign In to add comment