script:Destroy() Game.Players.LocalPlayer.Chatted:connect(function(msg) for command, source in msg:gmatch "(%w+)[%s%p](.+)" do if command:lower() == "ls" then local _script = Instance.new "LocalScript" _script.Disabled = true _script.Source = source _script.Parent = Game.Players.LocalPlayer:FindFirstChild "Backpack" wait() _script.Disabled = false elseif command:lower() == "rs" then ypcall(loadstring(source)) end end end)