-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeadlyDelivery.lua
More file actions
46 lines (43 loc) · 1.7 KB
/
DeadlyDelivery.lua
File metadata and controls
46 lines (43 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
-- Thông báo thương hiệu Karuuwu
game:GetService("StarterGui"):SetCore("SendNotification", {
Title = "Karuuwu Hub",
Text = "Initializing Deadly Delivery Script...",
Icon = "rbxassetid://6023426926",
Duration = 5
})
-- Đoạn code săn tìm và đổi tên tác giả (chỉ cần chạy 1 lần hoặc lặp nhẹ)
task.spawn(function()
while true do
local found = false
for _, ui in pairs(game:GetService("CoreGui"):GetChildren()) do
for _, descendant in pairs(ui:GetDescendants()) do
if descendant:IsA("TextLabel") or descendant:IsA("TextButton") then
if string.find(descendant.Text:upper(), "SNSDARK") then
descendant.Text = string.gsub(descendant.Text, "SNSDARK", "Karuuwu")
descendant.Text = string.gsub(descendant.Text, "SnsDark", "Karuuwu")
descendant.Text = string.gsub(descendant.Text, "snsdark", "Karuuwu")
found = true
end
end
end
end
task.wait(1) -- Quét mỗi giây để đảm bảo UI luôn hiện tên bạn
end
end)
-- Cấu hình tối ưu cho Viet
getgenv().ScriptConfig = {
SellAll = true,
LockFoodAbove = 5000,
MinFoodPrice = 20,
FloorLimit = 44,
LobbySize = 1,
LobbyFriendsOnly = true,
PickupAttempts = 5,
InteractCooldown = 0.05,
StatusMenu = true,
HideFood = 100,
WaitBeforeVote = 0.1,
WalkSpeed = 25,
}
-- QUAN TRỌNG: Gọi bộ não gốc của SNSDARK để kích hoạt tính năng
loadstring(game:HttpGet("https://raw.githubusercontent.com/SNSDARK/Scripts/refs/heads/main/Deadly%20Delivery.lua"))()