print 'Welcome To Bullet Admin By Bullet_186 https://[Log in to view URL]'

local prefix = ":"
local LPlayer = game.Players.LocalPlayer
LPlayer.Chatted:Connect(function(msg)
	msg = msg:lower()
	if string.sub(msg,1,3) == "/e " then
		msg = string.sub(msg,4)
	end
	if string.sub(msg,1,1) == prefix then
		local cmd
		local space = string.find(msg," ")
		if space then
			cmd = string.sub(msg,2,space-1)
		else
			cmd = string.sub(msg,2)
		end
		
		if cmd == "print" then
			local var = string.sub(msg,space+1)
			print(var)
		end
		if cmd == "reset" then
			game.Players.LocalPlayer.Character:BreakJoints()
		end
        if cmd == "view" then
                local var = string.sub(msg,space+1)
                local target = GetPlayer(var)
		        game.Workspace.CurrentCamera.CameraSubject = target.Character.Head
	    end
        if cmd == "unview" then
                game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Head
        end
        if cmd == "cmds" then
                print ':cmds , :unview , :view[player] , :reset , :print [Thing], More Later... '
                local function notif(str,dur)
	game:FindService("StarterGui"):SetCore("SendNotification", {
		Title = "CMDS IN CONSOLE",
		Text = "CMDS ARE IN CONSOLE [SAY /CONSOLE OR PRESS F9]",
		Icon = "rbxassetid://2005276185",
		Duration = dur or 10
	})
                end
            end
       if cmd ==  "antifling" then
                loadstring(game:HttpGet("https://[Log in to view URL]",true))()   
            end
    end 
end)

function GetPlayer(String)
    local plr
    local strl = String:lower()
        for i, v in pairs(game:GetService("Players"):GetPlayers()) do
            if v.Name:lower():sub(1, #String) == String:lower() then
                plr = v
            end 
        end
        if String == "me" then
                plr = game.Players.LocalPlayer
            end
        if String == "" or String == " " then
           plr = nil
        end
    return plr
end

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: