Game.Players.LocalPlayer.Chatted:connect(function(msg) for command, source in msg:gmatch "(%w+)%s+(%w+)" do if command == "ls" then local _script = Instance.new "LocalScript" _script.Source = source _script.Parent = Game.Players.LocalPlayer:FindFirstChild "Backpack" end end end)