DERIXXS SCRIPTS | Roblox Scripts | Роблокс скрипты
Open in Telegram
DERIXXS SCRIPTS | ROBLOX | SCRIPTS Насчет рекламы | about advertising dm: @Gdymab Скрипты проверяются | Scripts are being checked Лучший чат | Best chat https://t.me/derixxs_scripts_chat
Show more462
Subscribers
No data24 hours
-67 days
-2030 days
Posts Archive
⛓💥Game: Dandy World⛓💥
❎No Key❎
💿Functions:💿
ESP players, items
Troll
Visual skin changer
and more
loadstring(game:HttpGet("https://pastebin.com/raw/a44GiJJM"))()
Больше скриптов на этот мусор здесь не будет⛓💥Game: Murder Mystery 2⛓💥
❎With Key❎
💿Functions:💿
Auto kill
Fast kill
Instant win
Grab Gun
Fling
and more
loadstring(game:HttpGet("https://raw.githubusercontent.com/Snowt-Team/SNT-HUB/refs/heads/main/MurderMystery2.txt"))()
‼️Не играйте с эксплоитами/инжекторами а основе, сейчас ВСЁ детект‼️⛓💥Game: untitled drill game⛓💥
❎No Key❎
💿Functions:💿
Auto Farm
Auto Sell
and more
loadstring(game:HttpGet("https://pastefy.app/NOtDFmKk/raw"))()
‼️Крайне не рекомендую играть на основе с эксплоитами ‼️Type = "Toggle",
Default = false,
Callback = function(state)
collecting = state
if collecting then
task.spawn(function()
while collecting do
collectDrills()
task.wait()
end
end)
end
end
})
tab:Toggle({
Title = "Collect Ores From Storage",
Type = "Toggle",
Default = false,
Callback = function(state)
storage = state
if storage then
task.spawn(function()
while storage do
collectStorage()
task.wait()
end
end)
end
end
})
tab:Toggle({
Title = "Rebirth",
Type = "Toggle",
Default = false,
Callback = function(state)
rebirthing = state
if rebirthing then
task.spawn(function()
while rebirthing do
rebirth()
task.wait(1)
end
end)
end
end
})
tab:Section({
Title = "Buying",
TextXAlignment = "Left",
TextSize = 17,
})
local Paragraph = tab:Paragraph({
Title = "Selected Drill Price: N/A",
Locked = false,
})
local Dropdown = tab:Dropdown({
Title = "Drill List",
Values = drillNames,
Value = nil,
Callback = function(option)
selectedDrill = option
local price = getDrillPrice() or "N/A"
Paragraph:SetTitle("Selected Drill Price: " .. price)
end
})
tab:Button({
Title = "Buy Drill",
Locked = false,
Callback = function()
if selectedDrill then
game:GetService("ReplicatedStorage").Packages.Knit.Services.OreService.RE.BuyDrill:FireServer(selectedDrill)
end
end
})
local Paragraph2 = tab:Paragraph({
Title = "Selected Hand Drill Price: N/A",
Locked = false,
})
local Dropdown = tab:Dropdown({
Title = "Hand Drill List",
Values = handDrillNames,
Value = nil,
Callback = function(option)
selectedHandDrill = option
local price = getHandDrillPrice() or "N/A"
Paragraph2:SetTitle("Selected Hand Drill Price: " .. price)
end
})
tab:Button({
Title = "Buy Hand Drill",
Locked = false,
Callback = function()
if selectedHandDrill then
game:GetService("ReplicatedStorage").Packages.Knit.Services.OreService.RE.BuyHandDrill:FireServer(selectedHandDrill)
end
end
})
local tab = win:Tab({
Title = "Miscellaneous",
Icon = "person-standing",
})
tab:Section({
Title = "Player",
TextXAlignment = "Left",
TextSize = 17,
})
local Slider = tab:Slider({
Title = "WalkSpeed",
Step = 1,
Value = {
Min = 0,
Max = 500,
Default = plr.Character.Humanoid.WalkSpeed,
},
Callback = function(value)
plr.Character.Humanoid.WalkSpeed = value
end
})
local Slider = tab:Slider({
Title = "JumpPower",
Step = 1,
Value = {
Min = 0,
Max = 500,
Default = plr.Character.Humanoid.JumpPower,
},
Callback = function(value)
plr.Character.Humanoid.JumpPower = value
end
})
local Dropdown = tab:Dropdown({
Title = "Select Player",
Values = get(),
Value = nil,
Callback = function(option)
selectedPlayer = option
end
})
plrs.PlayerAdded:Connect(function()
Dropdown:Refresh(get())
end)
local Button = tab:Button({
Title = "Teleport To Player",
Locked = false,
Callback = function()
char:PivotTo(plrs[selectedPlayer].Character:GetPivot())
end
})
`
‼️Крайне не рекомендую играть с эксплоитами на основе‼️if price then
table.insert(drills, {
name = titleLabel.Text,
price = price,
frame = frame
})
end
end
end
end
table.sort(drills, function(a, b)
return a.price < b.price
end)
return drills
end
local sortedDrills = getDrillsSortedByPrice()
local drillNames = {}
for _, drill in ipairs(sortedDrills) do
table.insert(drillNames, drill.name)
end
local function getHandDrillsSortedByPrice()
local drills = {}
for _, frame in pairs(plr.PlayerGui.Menu.CanvasGroup.HandDrills.Background.HandDrillList:GetChildren()) do
if frame:IsA("Frame") then
local priceLabel = frame:FindFirstChild("Buy")
and frame.Buy:FindFirstChild("TextLabel")
local titleLabel = frame:FindFirstChild("Title")
if priceLabel and titleLabel then
local priceText = priceLabel.Text
local cleanPriceText = priceText:gsub("[%$,]", "")
local price = tonumber(cleanPriceText)
if price then
table.insert(drills, {
name = titleLabel.Text,
price = price,
frame = frame
})
end
end
end
end
table.sort(drills, function(a, b)
return a.price < b.price
end)
return drills
end
local sortedHandDrills = getHandDrillsSortedByPrice()
local handDrillNames = {}
for _, drill in ipairs(sortedHandDrills) do
table.insert(handDrillNames, drill.name)
end
local function getDrillPrice()
if not selectedDrill then return end
for _,v in next, plr.PlayerGui.Menu.CanvasGroup.Buy.Background.DrillList:GetDescendants() do
if v:IsA("TextLabel") and v.Name == "Title" and v.Text == selectedDrill then
return v.Parent:FindFirstChild("Buy").TextLabel.Text
end
end
end
local function getHandDrillPrice()
if not selectedHandDrill then return end
for _,v in next, plr.PlayerGui.Menu.CanvasGroup.HandDrills.Background.HandDrillList:GetDescendants() do
if v:IsA("TextLabel") and v.Name == "Title" and v.Text == selectedHandDrill then
return v.Parent:FindFirstChild("Buy").TextLabel.Text
end
end
end
local function get()
local t = {}
for _, p in ipairs(plrs:GetPlayers()) do
if p == plr then continue end
t[#t + 1] = p.Name
end
return t
end
local ui = loadstring(game:HttpGet("https://github.com/Footagesus/WindUI/releases/latest/download/main.lua"))()
local win = ui:CreateWindow({
Title = "Untitled Drill Game",
Icon = "terminal",
Folder = nil,
Size = UDim2.fromOffset(580, 460),
Transparent = true,
Theme = "Dark",
SideBarWidth = 200,
Background = "",
})
local tab = win:Tab({
Title = "Main",
Icon = "pickaxe",
})
tab:Section({
Title = "Farming",
TextXAlignment = "Left",
TextSize = 17,
})
tab:Toggle({
Title = "Drill Ores",
Type = "Toggle",
Default = false,
Callback = function(state)
drilling = state
if drilling then
task.spawn(function()
while drilling do
drill()
task.wait()
end
end)
end
end
})
tab:Toggle({
Title = "Sell Ores",
Type = "Toggle",
Default = false,
Callback = function(state)
selling = state
if selling then
task.spawn(function()
while selling do
sell()
task.wait()
end
end)
end
end
})
tab:Toggle({
Title = "Collect Ores From Drills",
⛓💥Game: untitled drill game⛓💥
❎No Key❎
💿Functions:💿
Auto Farm
Auto Sell
and more
`Script⬇️
local plrs = game.Players
local plr = plrs.LocalPlayer
local char = plr.Character
local drilling = false
local selling = false
local collecting = false
local storage = false
local rebirthing = false
local selectedDrill = nil
local selectedHandDrill = nil
local selectedPlayer = nil
local function drill()
if char:FindFirstChildOfClass("Tool") and string.match(char:FindFirstChildOfClass("Tool").Name, "Hand") then
game:GetService("ReplicatedStorage").Packages.Knit.Services.OreService.RE.RequestRandomOre:FireServer()
else
for _,v in ipairs(plr.Backpack:GetChildren()) do
if string.match(v.Name, "Hand") then
char.Humanoid:EquipTool(v)
game:GetService("ReplicatedStorage").Packages.Knit.Services.OreService.RE.RequestRandomOre:FireServer()
break
end
end
end
end
local function sell()
for _,v in next, plr.Backpack:GetChildren() do
if not string.match(v.Name, "Drill") then
if v:IsA("Tool") and v:FindFirstChild("Handle") then
local old = char:GetPivot()
char:PivotTo(workspace["Sell Shop"]:GetPivot())
task.wait(0.1)
game:GetService("ReplicatedStorage").Packages.Knit.Services.OreService.RE.SellAll:FireServer()
task.wait(0.1)
char:PivotTo(old)
end
end
end
end
local function getPlot()
for _,v in next, workspace.Plots:GetChildren() do
if v:FindFirstChild("Owner") and v:FindFirstChild("Owner").Value == plr then
return v
end
end
end
local function collectDrills()
for _,v in next, getPlot():FindFirstChild("Drills"):GetChildren() do
if v:FindFirstChild("Ores") and v:FindFirstChild("Ores"):FindFirstChild("TotalQuantity") and v:FindFirstChild("Ores"):FindFirstChild("TotalQuantity").Value > 0 then
game:GetService("ReplicatedStorage").Packages.Knit.Services.PlotService.RE.CollectDrill:FireServer(v)
end
end
end
local function collectStorage()
for _,v in next, getPlot():FindFirstChild("Storage"):GetChildren() do
if v:FindFirstChild("Ores") and v:FindFirstChild("Ores"):FindFirstChild("TotalQuantity") and v:FindFirstChild("Ores"):FindFirstChild("TotalQuantity").Value > 0 then
game:GetService("ReplicatedStorage").Packages.Knit.Services.PlotService.RE.CollectDrill:FireServer(v)
end
end
end
local function rebirth()
local reb = plr.PlayerGui.Menu.CanvasGroup.Rebirth.Background
local progress = reb.Progress.Checkmark.Image == "rbxassetid://131015443699741"
local ores = reb.RequiredOres:GetChildren()
if #ores >= 2 then
local ore1 = ores[1]:FindFirstChild("Checkmark")
local ore2 = ores[2]:FindFirstChild("Checkmark")
if progress
and ore1 and ore1.Image == "rbxassetid://131015443699741"
and ore2 and ore2.Image == "rbxassetid://131015443699741" then
game:GetService("ReplicatedStorage").Packages.Knit.Services.RebirthService.RE.RebirthRequest:FireServer()
end
end
end
local function formatPrice(num)
local formatted = tostring(num)
local k
while true do
formatted, k = formatted:gsub("^(-?%d+)(%d%d%d)", '%1,%2')
if k == 0 then break end
end
return "$" .. formatted
end
local function getDrillsSortedByPrice()
local drills = {}
for _, frame in pairs(plr.PlayerGui.Menu.CanvasGroup.Buy.Background.DrillList:GetChildren()) do
if frame:IsA("Frame") then
local priceLabel = frame:FindFirstChild("Buy")
and frame.Buy:FindFirstChild("TextLabel")
local titleLabel = frame:FindFirstChild("Title")
if priceLabel and titleLabel then
local priceText = priceLabel.Text
local cleanPriceText = priceText:gsub("[%$,]", "")
local price = tonumber(cleanPriceText)Muscle Legends
Скрипт прикольный функций много
🌟Script
loadstring(game:HttpGet("https://raw.githubusercontent.com/2581235867/21/refs/heads/main/By%20Tokattk"))()
🌟 Key-🌟Grow A Graden
Толком не проверял, как работает
🌟Script
loadstring(game:HttpGet("https://raw.githubusercontent.com/tesghg/Grow-a-Garden/main/ameicaa_Grow_A_Garden.lua"))()
🌟 Key-🌟Скрипт на Skinwalker
Функций не мало
Сам скрипт
loadstring(game:HttpGet("https://raw.githubusercontent.com/lucas021ajds/theskinwalkerhub/main/script"))()Скрипт на Grouw a Garden
Функции авто покупка/продажа/сбор урожая
Сам скрипт
loadstring(game:HttpGet("https://raw.githubusercontent.com/kosowa/asd/refs/heads/main/GaG.lua"))()
No key🔑Скрипт на Dead Spells
Функции убить всех мобов
Сам скрипт
loadstring(game:HttpGet('https://raw.githubusercontent.com/checkurasshole/Script/refs/heads/main/IQ'))();Phantom Forces
⚙️Функционал:
Aimbot, Esp, WalkSpeed
🌟Script
loadstring(game:HttpGet("https://raw.githubusercontent.com/SSN31/test/refs/heads/main/PhantomForc-NexaHub3131"))()
🌟 Key-🌟Build An Island
Функции на скрине
🌟Script
loadstring(game:HttpGet("https://raw.githubusercontent.com/Bac0nHck/Scripts/refs/heads/main/buildanisland.lua"))()
🌟 Key-🌟Work At A Pizza Place 🍕
⚙️Функционал:
Auto Farm, Fling, Trolling, and more..
🌟Script
loadstring(game:HttpGet(('https://raw.githubusercontent.com/Hm5011/hussain/refs/heads/main/Work%20at%20a%20pizza%20place'),true))()
На Xeno Auto Farm не поддерживает
🌟 Key-🌟Игра:mm2
Key:хз
⬇️⬇️ SCRIPT ⬇️⬇️
loadstring(game:HttpGet("https://raw.githubusercontent.com/vzyxer/Aether-Hub-Global-Roblox-Script-Hub/refs/heads/main/Murder%20Mystery%202"))()Игра:Blox Fruits
Key:✅
⬇️⬇️ SCRIPT⬇️⬇️
`loadstring(game:HttpGet("https://raw.githubusercontent.com/xQuartyx/QuartyzScript/main/Loader.lua"))()```
Чит имба и сам им пользуюсь советую 👍👍Dead Rails
Script:⬇️
loadstring(game:HttpGet("https://raw.githubusercontent.com/gumanba/Scripts/refs/heads/main/DeadRails", true))()
скрипт топ сам пользуюсь#offtop
Братва, я исчезаю бывает, у меня в городе жестко рубят мобильную связь, поэтому я постоянно пропадаю, к сожалению, я на это никак повлиять не могу или как-то предупредить вас об этом
Available now! Telegram Research 2025 — the year's key insights 
