local Fluent = loadstring(game:HttpGet("
Linkleri görebilmek için kayıt olmanız gerekmektedir
"))()
local SaveManager = loadstring(game:HttpGet("
Linkleri görebilmek için kayıt olmanız gerekmektedir
"))()
local InterfaceManager = loadstring(game:HttpGet("
Linkleri görebilmek için kayıt olmanız gerekmektedir
"))()
-- Exact strings recovered from the source are kept as-is, even when they look corrupted.
-- Where a callback body was not directly readable, the implementation below follows the
-- control flow and constants recovered from the raw callback body.
local Window = Fluent:CreateWindow({
Title = "Tebrikler.",
SubTitle = "che[tg_obad\1cjm",
TabWidth = 160,
Size = UDim2.fromOffset(580, 460),
Acrylic = true,
Theme = "DaD;",
MinimizeKey = Enum.KeyCode.LeftControl,
})
local Tabs = {
Home = Window:AddTab({
-- Raw title chunk in the original source:
-- (load((string.reverse((string.char((45-11),(92-3),101,54,(157-37),(92-6),(92-3),(57-4),(54-20),(167-47),(108-16),(103-11),49,(54-45),(125-5),(92-17),(129-37),(141-41),52,(120-22),92,(92-35),(34-1),(92-13),(288-50),110,114,(117-3),(116-23),(101-42),114))))))()
Title = "home",
Icon = "home",
}),
Settings = Window:AddTab({
Title = "Settings",
Icon = "settings",
}),
}
local speedHack = Tabs.Home:AddToggle("SpR@dToggle", {
Title = "SgeQd Ha7k",
Default = false,
Callback = function(Value)
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")
if Value then
humanoid.WalkSpeed = 50
else
humanoid.WalkSpeed = 16
end
end,
})
local speedSlider = Tabs.Home:AddSlider("SpeedSlider", {
Title = "Walk 5pe5d",
Description = "Adjust walk speed",
Default = 16,
Min = 16,
Max = 200,
Rounding = 1,
Callback = function(Value)
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")
humanoid.WalkSpeed = Value
end,
})
local noclipConnection
local noclipToggle = Tabs.Home:AddToggle("NoclipToggle", {
Title = "Noclip",
Default = false,
Callback = function(Value)
local player = game.Players.LocalPlayer
if Value then
noclipConnection = game:GetService("RunService").Stepped:Connect(function()
if player.Character then
for _, part in pairs(player.Character:GetDescendants()) do
if part:IsA("BasePart") then
part.CanCollide = false
end
end
end
end)
else
if noclipConnection then
noclipConnection

isconnect()
noclipConnection = nil
end
end
end,
})
local teleportButton = Tabs.Home:AddButton({
Title = "7eleM]nt qN SpKwn",
Description = "DP tR ppawm\29pXino",
Callback = function()
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local root = character:WaitForChild("HumanoidRootPart")
root.CFrame = CFrame.new(0, 5, 0)
end,
})
SaveManager:SetLibrary(Fluent)
InterfaceManager:SetLibrary(Fluent)
InterfaceManager:BuildInterfaceSection(Tabs.Settings)
SaveManager:BuildConfigSection(Tabs.Settings)
SaveManager:IgnoreThemeSettings()
Window:SelectTab(1)