Advertisement
Ehieisaac123

Untitled

Apr 9th, 2025
358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.41 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2. local player = Players.LocalPlayer
  3. local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui"))
  4. gui.Name = "CassanoHub"
  5.  
  6. -- Yin-Yang Background
  7. local bg = Instance.new("ImageLabel", gui)
  8. bg.Size = UDim2.new(1, 0, 1, 0)
  9. bg.Position = UDim2.new(0, 0, 0, 0)
  10. bg.Image = "rbxassetid://11719621788" -- Yin-Yang sky with moon (your uploaded visual)
  11. bg.ImageTransparency = 0.3
  12. bg.ZIndex = 0
  13.  
  14. -- Key Frame
  15. local KeyFrame = Instance.new("Frame", gui)
  16. KeyFrame.Size = UDim2.new(0, 300, 0, 200)
  17. KeyFrame.Position = UDim2.new(0.5, -150, 0.5, -100)
  18. KeyFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  19. KeyFrame.Active = true
  20. KeyFrame.Draggable = true
  21. Instance.new("UICorner", KeyFrame)
  22.  
  23. local Title = Instance.new("TextLabel", KeyFrame)
  24. Title.Size = UDim2.new(1, 0, 0, 40)
  25. Title.Text = "Cassano Hub Key System"
  26. Title.TextColor3 = Color3.new(1, 1, 1)
  27. Title.Font = Enum.Font.GothamBold
  28. Title.TextSize = 20
  29. Title.BackgroundTransparency = 1
  30.  
  31. local KeyBox = Instance.new("TextBox", KeyFrame)
  32. KeyBox.PlaceholderText = "Enter Key..."
  33. KeyBox.Size = UDim2.new(0.8, 0, 0, 30)
  34. KeyBox.Position = UDim2.new(0.1, 0, 0.35, 0)
  35. KeyBox.Text = ""
  36. KeyBox.Font = Enum.Font.Gotham
  37. KeyBox.TextSize = 16
  38. KeyBox.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  39. KeyBox.TextColor3 = Color3.new(1, 1, 1)
  40.  
  41. local GetKeyButton = Instance.new("TextButton", KeyFrame)
  42. GetKeyButton.Text = "Get Key"
  43. GetKeyButton.Size = UDim2.new(0.4, 0, 0, 30)
  44. GetKeyButton.Position = UDim2.new(0.1, 0, 0.65, 0)
  45. GetKeyButton.Font = Enum.Font.Gotham
  46. GetKeyButton.TextSize = 14
  47. GetKeyButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  48. GetKeyButton.TextColor3 = Color3.new(1, 1, 1)
  49. GetKeyButton.MouseButton1Click:Connect(function()
  50.     setclipboard("https://workink.net/1Z2m/r0bk16cn")
  51. end)
  52.  
  53. local CheckKeyButton = Instance.new("TextButton", KeyFrame)
  54. CheckKeyButton.Text = "Check Key"
  55. CheckKeyButton.Size = UDim2.new(0.4, 0, 0, 30)
  56. CheckKeyButton.Position = UDim2.new(0.5, 0, 0.65, 0)
  57. CheckKeyButton.Font = Enum.Font.Gotham
  58. CheckKeyButton.TextSize = 14
  59. CheckKeyButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  60. CheckKeyButton.TextColor3 = Color3.new(1, 1, 1)
  61.  
  62. -- Main Hub Frame
  63. local HubFrame = Instance.new("Frame", gui)
  64. HubFrame.Size = UDim2.new(0, 600, 0, 400)
  65. HubFrame.Position = UDim2.new(0.5, -300, 0.5, -200)
  66. HubFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  67. HubFrame.Visible = false
  68. HubFrame.Active = true
  69. HubFrame.Draggable = true
  70. Instance.new("UICorner", HubFrame)
  71.  
  72. local HubTitle = Instance.new("TextLabel", HubFrame)
  73. HubTitle.Size = UDim2.new(1, 0, 0, 30)
  74. HubTitle.Text = "Cassano Hub"
  75. HubTitle.TextColor3 = Color3.new(1, 1, 1)
  76. HubTitle.Font = Enum.Font.GothamBold
  77. HubTitle.TextSize = 22
  78. HubTitle.BackgroundTransparency = 1
  79.  
  80. -- Tabs
  81. local Sections = {"Combat", "General", "Exploit", "Misc"}
  82. local CurrentSection = "Combat"
  83. local Pages = {}
  84.  
  85. for i, sec in ipairs(Sections) do
  86.     local tab = Instance.new("TextButton", HubFrame)
  87.     tab.Size = UDim2.new(0, 140, 0, 25)
  88.     tab.Position = UDim2.new(0, (i - 1) * 145, 0, 30)
  89.     tab.Text = sec
  90.     tab.Font = Enum.Font.Gotham
  91.     tab.TextSize = 14
  92.     tab.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  93.     tab.TextColor3 = Color3.new(1, 1, 1)
  94.  
  95.     local page = Instance.new("ScrollingFrame", HubFrame)
  96.     page.Size = UDim2.new(1, -20, 1, -65)
  97.     page.Position = UDim2.new(0, 10, 0, 60)
  98.     page.CanvasSize = UDim2.new(0, 0, 10, 0)
  99.     page.ScrollBarThickness = 6
  100.     page.BackgroundTransparency = 1
  101.     page.Visible = sec == "Combat"
  102.     Pages[sec] = page
  103.  
  104.     local layout = Instance.new("UIListLayout", page)
  105.     layout.Padding = UDim.new(0, 5)
  106.     layout.SortOrder = Enum.SortOrder.LayoutOrder
  107.  
  108.     tab.MouseButton1Click:Connect(function()
  109.         for _, p in pairs(Pages) do p.Visible = false end
  110.         page.Visible = true
  111.         CurrentSection = sec
  112.     end)
  113. end
  114.  
  115. -- Key Logic
  116. local correctKey = "cassano123"
  117. CheckKeyButton.MouseButton1Click:Connect(function()
  118.     if KeyBox.Text == correctKey then
  119.         KeyFrame.Visible = false
  120.         HubFrame.Visible = true
  121.     else
  122.         KeyBox.Text = ""
  123.         KeyBox.PlaceholderText = "Wrong key! Try again."
  124.     end
  125. end)
  126.  
  127. -- Button Generator
  128. local function makeButton(name, section, callback)
  129.     local btn = Instance.new("TextButton")
  130.     btn.Size = UDim2.new(1, -10, 0, 30)
  131.     btn.Text = name
  132.     btn.Font = Enum.Font.Gotham
  133.     btn.TextSize = 14
  134.     btn.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  135.     btn.TextColor3 = Color3.new(1, 1, 1)
  136.     btn.Parent = Pages[section]
  137.     btn.MouseButton1Click:Connect(callback)
  138. end
  139.  
  140. -- COMBAT SECTION FEATURES
  141. makeButton("Kill Aura", "Combat", function()
  142.     while true do
  143.         task.wait(0.3)
  144.         for _, v in pairs(Players:GetPlayers()) do
  145.             if v ~= player and v.Character and v.Character:FindFirstChild("Humanoid") then
  146.                 v.Character.Humanoid.Health = 0
  147.             end
  148.         end
  149.     end
  150. end)
  151.  
  152. makeButton("Farsing", "Combat", function()
  153.     print("Farsing Enabled (placeholder)")
  154. end)
  155.  
  156. makeButton("Always Equip Fists", "Combat", function()
  157.     print("Equipping fists")
  158. end)
  159.  
  160. makeButton("Include NPCs", "Combat", function()
  161.     print("NPCs included")
  162. end)
  163.  
  164. makeButton("Player List", "Combat", function()
  165.     for _, v in pairs(Players:GetPlayers()) do
  166.         print(v.Name)
  167.     end
  168. end)
  169.  
  170. makeButton("Magnet Mode", "Combat", function()
  171.     print("Magnet Mode On")
  172. end)
  173.  
  174. makeButton("Magnet Distance: 2", "Combat", function()
  175.     print("Magnet Distance Set")
  176. end)
  177.  
  178. makeButton("Mithox Expander", "Combat", function()
  179.     print("Mithox Expander Active")
  180. end)
  181.  
  182. makeButton("Visible Check", "Combat", function()
  183.     print("Checking visibility")
  184. end)
  185.  
  186. makeButton("Mutbox Staw: 2", "Combat", function()
  187.     print("Mutbox Set to 2")
  188. end)
  189.  
  190. makeButton("Show Puthun", "Combat", function()
  191.     print("Puthun Shown")
  192. end)
  193.  
  194. makeButton("Ignore Friends", "Combat", function()
  195.     print("Ignoring friends")
  196. end)
  197.  
  198. makeButton("Attack Cooldown: 0.3", "Combat", function()
  199.     print("Attack speed set to 0.3")
  200. end)
  201.  
  202. makeButton("Attack Mode", "Combat", function()
  203.     print("Toggled attack mode")
  204. end)
  205.  
  206. makeButton("Enable Style Changer", "Combat", function()
  207.     print("Style changer enabled")
  208. end)
  209.  
  210. makeButton("Select Style: Jeet Kune Do", "Combat", function()
  211.     print("Jeet Kune Do selected")
  212. end)
  213.  
  214. makeButton("Weapon TP", "Combat", function()
  215.     print("Weapon TP Triggered")
  216. end)
  217.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement