Categories > Exploiting > Scripts >

admin script

tonykakko82

some random scripter.

Posts: 59

Threads: 27

Joined: Jan, 2021

Reputation: 1

Posted

ok sure u get it

-- tony's admin
local settings = { -- What to tweak (admins, banned)
	Admins = {};
}



--Commands are:

--SavePlace |Saves the place, Reccomended to have an exploit with saveinstance.

--Kill player | kills an player by using CFrame.

--Fling player | Teleports to player and flings.

--Invisible | Makes you invisible, Reset to make yourself not invisible.
--And many more.

--LoopKill Player |



function CheckAdmin(plr)
	for i=1,#settings do
		if settings[i].Admins == plr then
			return true
		else
			return false
		end
	end
end

game.Players.ChildAdded:connect(function(p)
	p.Chatted:connect(function(msg, speaker)
		local source = string.lower(speaker.Name)
		if msg:lower() == "Kill " and CheckAdmin(source) then -- You can add more commands later
			local player = game.Players.LocalPlayer.Name
			game.Workspace:FindFirstChild(source).HumanoidRootPart.CFRAME = CFrame.new(0,-400,0)
		end -- Next command after here
	end)
end)

game.Players.ChildAdded:connect(function(p)
	p.Chatted:connect(function(msg, speaker)
		local source = string.lower(speaker.Name)
		if msg:lower() == "Fling " and CheckAdmin(source) then -- You can add more commands later
		local not_target = game.Players.LocalPlayer.Name
			game.Workspace:FindFirstChild(not_target).HumanoidRootPart.CFrame =CFrame.new(game.Workspace:FindFirstChild(source).HumanoidRootPart.CFrame)
		end -- Next command after here
	end)
end)



game.Players.ChildAdded:connect(function(p)
	p.Chatted:connect(function(msg, speaker)
		local source = string.lower(speaker.Name)
		if msg:lower() == "Invisible " and CheckAdmin(source) then -- You can add more commands later
			game.Workspace:FindFirstChild(source).HumanoidRootPart:Destroy()
		end -- Next command after here
	end)
end)

game.Players.ChildAdded:connect(function(p)
	p.Chatted:connect(function(msg, speaker)
		local source = string.lower(speaker.Name)
		if msg:lower() == "LoopKill " and CheckAdmin(source) then -- You can add more commands later
			while true do
				wait()
				game.Workspace:FindFirstChild(source).HumanoidRootPart.CFrame = CFrame.new(0,-400,0)
			end
		end -- Next command after here
	end)
end)



game.Players.ChildAdded:connect(function(p)
	p.Chatted:connect(function(msg, speaker)
		local source = string.lower(speaker.Name)
		if msg:lower() == "SavePlace " and CheckAdmin(source) then -- You can add more commands later
			saveinstance()
		end -- Next command after here
	end)
end)

  • 1

Exploits i have used: Cyrup, krnl, Kiwi X

Exploits i use: Cheat engine, jjsploit,Oxygen U, Cyrup, krnl

im not the real tonykakko82.

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )