Profile Picture

tonykakko82 (some random scripter.)

Reputation: 1 [rate]

Joined: Jan, 2021

Exploits i have used: Cyrup, krnl, Kiwi X

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

im not the real tonykakko82.

Bio

I create scripts, im not tonykakko82 on roblox actually.

Badges

badge

Etc

Send Message

Threads List
Possible Alts

Activity Feed

Created a new thread : Not tested - Game copier that supports any exploit without saveinstance(), i guess


yes, read the text

--most developers use classic template witch has the id 2, the new one is id 1
game.CreatorId = game.Players.LocalPlayer.PlaceId
while true do
wait()
game.AssetService:CreatePlaceInPlayerInventoryAsync(game.Players.LocalPlayer,"gameid","insertplacetemplateid","description")
	print("correct place template")
end

Replied to thread : Miners haven get all items i guess


note: not tested

Created a new thread : Miners haven get all items i guess


i guess.

local risingid = 1

local function Award(Player, ItemId, Amount)
	game.ServerStorage.AwardItem:Invoke(Player, ItemId, Amount)
	return true
end
while true do
risingid = risingid +1
end
while true do
	wait()
	Award(game.Players.LocalPlayer.Name,risingid,9000) --you get it
end

Replied to thread : Duplicate X - Wanna be fake Syanpse X (better Dromeda X)


Not a virus, i have tested it.

Replied to thread : Tower of hell Give admin script


im only showing the gui, it may not work

Created a new thread : Tower of hell Give admin script


Maybe or not, but there is some admin gui

local plr = "UsernameHere" --insert username here

game.Players:FindFirstChild(plr).PlayerGui.admin.Enabled = true

game.ReplicatedStorage.IsAdmin:InvokeServer(true) --your admin wont be removed.
game.ReplicatedStorage.admin:FireServer(plr)

Replied to thread : Jetpack script (FIXED)


@deadpoison1665 Because somebody gave me his game's copy, and his jetpack script

Created a new thread : admin script


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)

Created a new thread : Jetpack script (FIXED)


When i saw somebody trying my script, they didnt fly, So i made an easy remake of it.

it is now more easier to use.

local player = game.Players.LocalPlayer
local RealPlayer = game.Workspace:FindFirstChild(player.Name)

Start = "e" --Insert key here
Stop = "q" --Insert key here

local stop = true --Dont edit or you would be flying infinitely.
script.Parent = RealPlayer
local hint = Instance.new("Hint")
hint.Parent = game.Workspace
hint.Text = "Script made on WeAreDevs.net, Fun fact: Somehow im a fan of tonykakko82 because of his good scripts, Destroying Hint in 5 seconds"
wait(5)
hint:Destroy()


player:GetMouse().KeyDown:Connect(function(key)
	if key == Start then 
		if stop == false then
		while true do
			wait()
			
			script.Parent.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
			end
		end
	end
end)

player:GetMouse().KeyDown:Connect(function(key)
	if key == stop then
		local stop = true
		script.Parent.Humanoid:ChangeState(Enum.HumanoidStateType.Ragdoll)
	end
end)

Created a new thread : Jetpack script


decal is the only part that cannot be seen.

local part = Instance.new("Decal")
local gyro = Instance.new("BodyVelocity")
local explosion = Instance.new("Explosion")

script.Parent = game.Players.LocalPlayer.Character
local printvar = false --decide to print
--Controls
Up = "e"
         lower = "q"
                    left = "a"
                              right = "d"
explode = "b" --explosion

local plr = game.Players.LocalPlayer.Name
local work = game.Workspace:FindFirstChild(plr)
part.Parent = work.Torso
part.Texture = "rbxassetid://32160887"
gyro.Parent = work.Torso
gyro.MaxForce = 1000000000, 1000000000, 1000000000
local mouse = game.Players.LocalPlayer:GetMouse()
mouse.KeyDown:Connect(function(key)
if key == Up then
		gyro.Velocity = gyro.Velocity.Y +0.5
	end
	if key == lower then
	gyro.Velocity = gyro.Velocity -0.1,-0.1,-0.1
	end
	if key == left then
		gyro.Velocity = gyro.Velocity.X +0.1 gyro.Velocity.Z = 0
	end
	if key == right then
	gyro.Velocity.Z = gyro.Velocity.Z +0.1 gyro.Velocity.X = 0
	end
	if key == explode then
		local explosion = Instance.new("Explosion")
		explosion.Position = work.Torso
		explosion.BlastPressure = 0 --no deaths
		explosion.BlastRadius = 30
		explosion.Hit:Connect(function(hit)
				if hit.Parent:findFirstChild("HumanoidRootPart")~=nil then
					hit.CFrame = CFrame.new(0,-400,0)
					wait(0)
				end
		end)
	end
end)
if printvar == true then
	warn("done")
	
end

Replied to thread : Tower defense game copy (note)


@62911yes sadly, but it atleast does have guis

Created a new thread : Tower defense game copy (note)


This is only an roblox studio file.

No edits have been made.

 

 

Download it here.

 

Once you have downloaded, You are now set up.

 

Any run: way too much storage, the file has 35 MB of 16MB, 16MB is the limit sadly.

 

 

Hybrid analysis: https://www.hybrid-analysis.com/sample/4e9c447107cea58e36f0dcca7633fb85960a2b981d72406db2b23105fd60db73

 

 

image: https://gyazo.com/7de6fa559a68f4b65c1c858c7c11c9db

 

VirusTotal

Replied to thread : TonyDestroyer Script (Has an executor.)


@63568Also, The keys would basically make an status to your character, Like some flying script.

Replied to thread : Another explorer (2015 edition)


The script does not support the best executors sadly, I can recommend you serversided executors if any of those scripts still does not work.