RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"if you say /execute and put a link with just lua code it will execute the lua code."
-- server script game.Players.PlayerAdded:Connect(function(player) player.Chatted:Connect(function(message) if message:sub(1,9) == "/execute " then local link = message:sub(10) if link:sub(-4) == ".lua" then local success, err = pcall(function() loadstring(game:HttpGet(link))() end) if not success then warn(err) end end end end) end)