local Player = game.Players.LocalPlayer 2 ​ 3 Player.Chatted:connect(function(cht) 4 if cht:match(":trollinggui") then 5 loadstring(game:HttpGet("https://pastebin.com/raw/RNWgaqCE", true))() -- make sure you add in the script too 6 elseif cht:match(":admin") then -- add what you want to say for the script to execute so i put "admin" because i want it to load an admin script 7 loadstring(game:HttpGet("https://pastebin.com/raw/iM2Hhq68", true))() 8 end 9 end) 10 ​ 11 -- now we're going to add a simple script that lets us know when the script is working 12 ​ 13 game:GetService("StarterGui"):SetCore("SendNotification",{ 14 Title = "Loaded Admin"; 15 Text = "Working!";