-- Load Adonis
loadstring(game:HttpGet("https://[Log in to view URL]", true))()
-- Load Rayfield
local Rayfield = loadstring(game:HttpGet('https://[Log in to view URL]'))()
local executor = identifyexecutor and identifyexecutor() or "Unknown Executor"
-- Theme
local customTheme = {
TextColor = Color3.fromRGB(255, 255, 255),
Background = Color3.fromRGB(0, 0, 0),
Topbar = Color3.fromRGB(0, 0, 0),
Shadow = Color3.fromRGB(0, 0, 0),
NotificationBackground = Color3.fromRGB(0, 0, 0),
NotificationActionsBackground = Color3.fromRGB(0, 0, 0),
TabBackground = Color3.fromRGB(0, 0, 0),
TabStroke = Color3.fromRGB(0, 0, 0),
TabBackgroundSelected = Color3.fromRGB(0, 0, 0),
TabTextColor = Color3.fromRGB(255, 255, 255),
SelectedTabTextColor = Color3.fromRGB(255, 255, 255),
ElementBackground = Color3.fromRGB(0, 0, 0),
ElementBackgroundHover = Color3.fromRGB(0, 0, 0),
SecondaryElementBackground = Color3.fromRGB(0, 0, 0),
ElementStroke = Color3.fromRGB(0, 0, 0),
SecondaryElementStroke = Color3.fromRGB(0, 0, 0),
SliderBackground = Color3.fromRGB(0, 0, 0),
SliderProgress = Color3.fromRGB(255, 0, 0),
SliderStroke = Color3.fromRGB(0, 0, 0),
ToggleBackground = Color3.fromRGB(0, 0, 0),
ToggleEnabled = Color3.fromRGB(255, 0, 0),
ToggleDisabled = Color3.fromRGB(60, 60, 60),
ToggleEnabledStroke = Color3.fromRGB(0, 0, 0),
ToggleDisabledStroke = Color3.fromRGB(0, 0, 0),
ToggleEnabledOuterStroke = Color3.fromRGB(0, 0, 0),
ToggleDisabledOuterStroke = Color3.fromRGB(0, 0, 0),
DropdownSelected = Color3.fromRGB(0, 0, 0),
DropdownUnselected = Color3.fromRGB(0, 0, 0),
InputBackground = Color3.fromRGB(0, 0, 0),
InputStroke = Color3.fromRGB(0, 0, 0),
PlaceholderColor = Color3.fromRGB(255, 0, 0),
KeyInputBackground = Color3.fromRGB(0, 0, 0),
KeyInputTextColor = Color3.fromRGB(255, 255, 255)
}
-- Window
local Window = Rayfield:CreateWindow({
Name = "X-Dk V5 | Streetz war 2 | " .. executor,
Theme = customTheme,
DisableRayfieldPrompts = true,
DisableBuildWarnings = true,
ConfigurationSaving = {
Enabled = false,
FolderName = "GreenBlackThemeHub",
FileName = "BigHub"
},
Discord = {
Enabled = false
},
KeySystem = true,
KeySettings = {
Title = "",
Subtitle = "Bypass Activated — Key Required",
Note = "Go to #key discord channel to get key.",
FileName = "DK_KEY_VERIFY",
SaveKey = false,
GrabKeyFromSite = false,
Key = {"Summer"},
Theme = customTheme
}
})
-- HOME TAB
local MainTab = Window:CreateTab("Home", "box")
MainTab:CreateSection("Welcome!")
MainTab:CreateParagraph({Title = "Welcome!", Content = "Thank you for using X-Dk."})
MainTab:CreateSection("User Information")
local player = game.Players.LocalPlayer
MainTab:CreateLabel("Player: " .. player.Name)
MainTab:CreateLabel("User Id: " .. player.UserId)
MainTab:CreateSection("Game and Executor")
local gameName = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name
MainTab:CreateLabel("Game: " .. gameName)
MainTab:CreateLabel("Executor: " .. executor)
MainTab:CreateSection("Hardware")
local function getHWID()
if syn and syn.crypt and syn.crypt.hash then
return syn.crypt.hash
elseif identifyexecutor and identifyexecutor():lower():find("scriptware") then
return "ScriptWare HWID is not publicly accessible"
elseif gethwid then
return gethwid()
elseif fluxus and fluxus.gethwid then
return fluxus.gethwid()
elseif isexecutorenv and isexecutorenv() then
return getgenv().KRNL_ID or "KRNL HWID Unavailable"
end
return "Not Supported"
end
MainTab:CreateLabel("HWID: " .. getHWID())
MainTab:CreateSection("Date + Time")
MainTab:CreateLabel("Date: " .. os.date("%Y-%m-%d"))
MainTab:CreateLabel("Time: " .. os.date("%H:%M:%S"))
MainTab:CreateSection("Credits")
MainTab:CreateButton({
Name = "Join Discord!",
Callback = function()
if setclipboard then
setclipboard("https://[Log in to view URL]")
Rayfield:Notify({
Title = "Link Copied!",
Content = "The Discord link has been copied to your clipboard.",
Duration = 8.5
})
else
print("Your executor does not support setclipboard.")
end
end
})
MainTab:CreateLabel("Credits: XDkdev | Read Bio before @")
-- CARD TAB
local CardTab = Window:CreateTab("Card", "credit-card")
CardTab:CreateSection("Dupe")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local VirtualInputManager = game:GetService("VirtualInputManager")
local RunService = game:GetService("RunService")
local StarterGui = game:GetService("StarterGui")
local dupeAmount = 10
local function notifyFarmed(finalAmount)
Rayfield:Notify({
Title = "Success",
Content = "You have Duped " .. tostring(finalAmount) .. " cards and laptops.",
Duration = 6
})
end
local function duplicateCardsAndLaptops()
if dupeAmount <= 0 then return end
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)
RunService:Set3dRenderingEnabled(false)
fireclickdetector(game.Workspace["Streetz War"].Anonymous.ClickDetector)
task.wait()
local shopGui = player.PlayerGui:WaitForChild("DealerGui").ShopFrame
shopGui.Visible = true
player.PlayerGui.DealerGui.Frame.Visible = false
repeat task.wait() until player.Character and player.Character:FindFirstChild("HumanoidRootPart")
player.Character.HumanoidRootPart.CFrame = CFrame.new(-55, 4.5, 170)
task.wait(0.5)
local cardButton = shopGui["Blank Card"]
local laptopButton = shopGui["laptop"]
for i = 1, dupeAmount do
task.wait()
if cardButton.Visible then
local pos = cardButton.AbsolutePosition
VirtualInputManager:SendMouseButtonEvent(pos.X + 150, pos.Y + 60, 0, true, game, 0)
task.wait()
VirtualInputManager:SendMouseButtonEvent(pos.X + 150, pos.Y + 60, 0, false, game, 0)
end
if laptopButton.Visible then
local pos = laptopButton.AbsolutePosition
VirtualInputManager:SendMouseButtonEvent(pos.X + 150, pos.Y + 60, 0, true, game, 0)
task.wait()
VirtualInputManager:SendMouseButtonEvent(pos.X + 150, pos.Y + 60, 0, false, game, 0)
end
end
RunService:Set3dRenderingEnabled(true)
local exit = shopGui.exit
VirtualInputManager:SendMouseButtonEvent(exit.AbsolutePosition.X + 300, exit.AbsolutePosition.Y + 65, 0, true, game, 0)
task.wait()
VirtualInputManager:SendMouseButtonEvent(exit.AbsolutePosition.X + 300, exit.AbsolutePosition.Y + 65, 0, false, game, 0)
player.Character.HumanoidRootPart.CFrame = CFrame.new(949, 4, -102)
task.wait(2)
local laptopCount = 0
for _, v in pairs(player.Backpack:GetChildren()) do
if v.Name == "Laptop" then
laptopCount = 1
end
end
for i = 1, laptopCount - 1 do
spawn(function()
ReplicatedStorage.Assets.Other.GiverPunchmade:InvokeServer(true, "NEW123")
end)
end
task.wait(4)
if player.Backpack:FindFirstChild("Laptop") then
player.Backpack.Laptop.Parent = player.Character
end
task.wait(4)
local cardCount = 0
for _, v in pairs(player.Backpack:GetChildren()) do
if v.Name == "Loaded Card" then
cardCount = 1
end
end
for i = 1, cardCount do
spawn(function()
ReplicatedStorage.Assets.Other.GiverPunchmade:InvokeServer(false, "NEW123")
end)
end
task.wait(1)
player.Character.Humanoid:UnequipTools()
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, true)
notifyFarmed(dupeAmount)
end
CardTab:CreateInput({
Name = "Amount",
PlaceholderText = "Input",
RemoveTextAfterFocusLost = false,
Flag = "DupeAmount",
Callback = function(value)
dupeAmount = tonumber(value) or 10
if dupeAmount <= 0 then dupeAmount = 10 end
duplicateCardsAndLaptops()
end
})
To embed this project on your website, copy the following code and paste it into your website's HTML: