Skip to content

Commit a0beafc

Browse files
authored
Create Quan
H
1 parent f28e40c commit a0beafc

1 file changed

Lines changed: 130 additions & 0 deletions

File tree

Quan

Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
-- 🌹 Quantapcode Hub 🌹
2+
local Players = game:GetService("Players")
3+
local lp = Players.LocalPlayer
4+
5+
-- ScreenGui chính
6+
local gui = Instance.new("ScreenGui", lp:WaitForChild("PlayerGui"))
7+
gui.Name = "QuantapcodeHub"
8+
9+
-- Main Frame
10+
local main = Instance.new("Frame", gui)
11+
main.Size = UDim2.new(0, 450, 0, 400)
12+
main.Position = UDim2.new(0.5, -225, 0.5, -200)
13+
main.BackgroundColor3 = Color3.fromRGB(25,25,25)
14+
main.Active = true
15+
main.Draggable = true
16+
Instance.new("UICorner", main).CornerRadius = UDim.new(0,15)
17+
18+
-- Title
19+
local title = Instance.new("TextLabel", main)
20+
title.Size = UDim2.new(1,0,0,50)
21+
title.Text = "🌹 Quantapcode 🌹"
22+
title.Font = Enum.Font.GothamBold
23+
title.TextSize = 22
24+
title.TextColor3 = Color3.fromRGB(255,255,255)
25+
title.BackgroundColor3 = Color3.fromRGB(50,50,50)
26+
title.BorderSizePixel = 0
27+
28+
-- Content Frame
29+
local content = Instance.new("Frame", main)
30+
content.Size = UDim2.new(1,0,1,-50)
31+
content.Position = UDim2.new(0,0,0,50)
32+
content.BackgroundColor3 = Color3.fromRGB(45,45,45)
33+
34+
-- Notify
35+
local function notify(msg)
36+
game.StarterGui:SetCore("SendNotification", {
37+
Title = "🌹 Quantapcode",
38+
Text = msg,
39+
Duration = 3
40+
})
41+
end
42+
43+
-- =================================
44+
-- Script 1: Mirida
45+
-- =================================
46+
local script1Running = false
47+
local script1Func
48+
49+
local btnToggle1 = Instance.new("TextButton", content)
50+
btnToggle1.Size = UDim2.new(1,-20,0,50)
51+
btnToggle1.Position = UDim2.new(0,10,0,10)
52+
btnToggle1.Text = "🌹 Mirida"
53+
btnToggle1.Font = Enum.Font.GothamBold
54+
btnToggle1.TextSize = 18
55+
btnToggle1.TextColor3 = Color3.fromRGB(255,255,255)
56+
btnToggle1.BackgroundColor3 = Color3.fromRGB(80,80,80)
57+
Instance.new("UICorner", btnToggle1).CornerRadius = UDim.new(0,10)
58+
59+
btnToggle1.MouseButton1Click:Connect(function()
60+
if not script1Running then
61+
local success, err = pcall(function()
62+
script1Func = loadstring(game:HttpGet("https://pastefy.app/mTbfVy0H/raw"))
63+
script1Func()
64+
end)
65+
if success then
66+
script1Running = true
67+
btnToggle1.Text = "❌ Tắt Script Mirida"
68+
notify("✅ Script Mirida đã chạy")
69+
else
70+
notify("❌ Lỗi: "..tostring(err))
71+
end
72+
else
73+
script1Running = false
74+
btnToggle1.Text = "🌹 Mirida"
75+
notify("⚠️ Script Mirida đã dừng toggle (có thể không tắt được hoàn toàn)")
76+
end
77+
end)
78+
79+
-- =================================
80+
-- Script 2: Lemon
81+
-- =================================
82+
local script2Running = false
83+
local script2Func
84+
85+
local btnToggle2 = Instance.new("TextButton", content)
86+
btnToggle2.Size = UDim2.new(1,-20,0,50)
87+
btnToggle2.Position = UDim2.new(0,10,0,70)
88+
btnToggle2.Text = "🌹 Lemon"
89+
btnToggle2.Font = Enum.Font.GothamBold
90+
btnToggle2.TextSize = 18
91+
btnToggle2.TextColor3 = Color3.fromRGB(255,255,255)
92+
btnToggle2.BackgroundColor3 = Color3.fromRGB(80,80,80)
93+
Instance.new("UICorner", btnToggle2).CornerRadius = UDim.new(0,10)
94+
95+
btnToggle2.MouseButton1Click:Connect(function()
96+
if not script2Running then
97+
local success, err = pcall(function()
98+
script2Func = loadstring(game:HttpGet("https://pastefy.app/1FPEhJmq/raw"))
99+
script2Func()
100+
end)
101+
if success then
102+
script2Running = true
103+
btnToggle2.Text = "❌ Tắt Script Lemon"
104+
notify("✅ Script Lemon đã chạy")
105+
else
106+
notify("❌ Lỗi: "..tostring(err))
107+
end
108+
else
109+
script2Running = false
110+
btnToggle2.Text = "🌹 Lemon"
111+
notify("⚠️ Script Lemon đã dừng toggle (có thể không tắt được hoàn toàn)")
112+
end
113+
end)
114+
115+
-- =================================
116+
-- Toggle Icon 🌹
117+
-- =================================
118+
local toggleBtn = Instance.new("TextButton", gui)
119+
toggleBtn.Size = UDim2.new(0,50,0,50)
120+
toggleBtn.Position = UDim2.new(0,10,0,10)
121+
toggleBtn.Text = "🌹"
122+
toggleBtn.Font = Enum.Font.GothamBold
123+
toggleBtn.TextSize = 28
124+
toggleBtn.TextColor3 = Color3.fromRGB(255,255,255)
125+
toggleBtn.BackgroundColor3 = Color3.fromRGB(50,50,50)
126+
Instance.new("UICorner", toggleBtn).CornerRadius = UDim.new(0,10)
127+
128+
toggleBtn.MouseButton1Click:Connect(function()
129+
main.Visible = not main.Visible
130+
end)

0 commit comments

Comments
 (0)