Advertisement
Ehieisaac123

Just cassano

Apr 10th, 2025
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.67 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
  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(0, 0, 0)
  19. KeyFrame.BackgroundTransparency = 0.5
  20. KeyFrame.Active = true
  21. KeyFrame.Draggable = true
  22. Instance.new("UICorner", KeyFrame)
  23.  
  24. local Title = Instance.new("TextLabel", KeyFrame)
  25. Title.Size = UDim2.new(1, 0, 0, 40)
  26. Title.Text = "Cassano Hub Key System"
  27. Title.TextColor3 = Color3.new(1, 1, 1)
  28. Title.Font = Enum.Font.GothamBold
  29. Title.TextSize = 20
  30. Title.BackgroundTransparency = 1
  31.  
  32. local KeyBox = Instance.new("TextBox", KeyFrame)
  33. KeyBox.PlaceholderText = "Enter Key..."
  34. KeyBox.Size = UDim2.new(0.8, 0, 0, 30)
  35. KeyBox.Position = UDim2.new(0.1, 0, 0.35, 0)
  36. KeyBox.Text = ""
  37. KeyBox.Font = Enum.Font.Gotham
  38. KeyBox.TextSize = 16
  39. KeyBox.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  40. KeyBox.TextColor3 = Color3.new(1, 1, 1)
  41.  
  42. local GetKeyButton = Instance.new("TextButton", KeyFrame)
  43. GetKeyButton.Text = "Get Key"
  44. GetKeyButton.Size = UDim2.new(0.4, 0, 0, 30)
  45. GetKeyButton.Position = UDim2.new(0.1, 0, 0.65, 0)
  46. GetKeyButton.Font = Enum.Font.Gotham
  47. GetKeyButton.TextSize = 14
  48. GetKeyButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  49. GetKeyButton.TextColor3 = Color3.new(1, 1, 1)
  50. GetKeyButton.MouseButton1Click:Connect(function()
  51.     setclipboard("https://workink.net/1Z2m/r0bk16cn")
  52. end)
  53.  
  54. local CheckKeyButton = Instance.new("TextButton", KeyFrame)
  55. CheckKeyButton.Text = "Check Key"
  56. CheckKeyButton.Size = UDim2.new(0.4, 0, 0, 30)
  57. CheckKeyButton.Position = UDim2.new(0.5, 0, 0.65, 0)
  58. CheckKeyButton.Font = Enum.Font.Gotham
  59. CheckKeyButton.TextSize = 14
  60. CheckKeyButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  61. CheckKeyButton.TextColor3 = Color3.new(1, 1, 1)
  62.  
  63. -- Main Hub Frame
  64. local HubFrame = Instance.new("Frame", gui)
  65. HubFrame.Size = UDim2.new(0, 600, 0, 400)
  66. HubFrame.Position = UDim2.new(0.5, -300, 0.5, -200)
  67. HubFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  68. HubFrame.BackgroundTransparency = 0.4
  69. HubFrame.Visible = false
  70. HubFrame.Active = true
  71. HubFrame.Draggable = true
  72. Instance.new("UICorner", HubFrame)
  73.  
  74. local HubTitle = Instance.new("TextLabel", HubFrame)
  75. HubTitle.Size = UDim2.new(1, 0, 0, 30)
  76. HubTitle.Text = "Cassano Hub"
  77. HubTitle.TextColor3 = Color3.new(1, 1, 1)
  78. HubTitle.Font = Enum.Font.GothamBold
  79. HubTitle.TextSize = 22
  80. HubTitle.BackgroundTransparency = 1
  81.  
  82. -- Tabs
  83. local Sections = {"Combat", "General", "Exploit", "Misc"}
  84. local CurrentSection = "Combat"
  85. local Pages = {}
  86.  
  87. for i, sec in ipairs(Sections) do
  88.     local tab = Instance.new("TextButton", HubFrame)
  89.     tab.Size = UDim2.new(0, 140, 0, 25)
  90.     tab.Position = UDim2.new(0, (i - 1) * 145, 0, 30)
  91.     tab.Text = sec
  92.     tab.Font = Enum.Font.Gotham
  93.     tab.TextSize = 14
  94.     tab.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  95.     tab.TextColor3 = Color3.new(1, 1, 1)
  96.  
  97.     local page = Instance.new("ScrollingFrame", HubFrame)
  98.     page.Size = UDim2.new(1, -20, 1, -65)
  99.     page.Position = UDim2.new(0, 10, 0, 60)
  100.     page.CanvasSize = UDim2.new(0, 0, 10, 0)
  101.     page.ScrollBarThickness = 6
  102.     page.BackgroundTransparency = 1
  103.     page.Visible = sec == "Combat"
  104.     Pages[sec] = page
  105.  
  106.     local layout = Instance.new("UIListLayout", page)
  107.     layout.Padding = UDim.new(0, 5)
  108.     layout.SortOrder = Enum.SortOrder.LayoutOrder
  109.  
  110.     tab.MouseButton1Click:Connect(function()
  111.         for _, p in pairs(Pages) do p.Visible = false end
  112.         page.Visible = true
  113.         CurrentSection = sec
  114.     end)
  115. end
  116.  
  117. -- Key Logic
  118. local correctKey = "cassano123"
  119. CheckKeyButton.MouseButton1Click:Connect(function()
  120.     if KeyBox.Text == correctKey then
  121.         KeyFrame.Visible = false
  122.         HubFrame.Visible = true
  123.     else
  124.         KeyBox.Text = ""
  125.         KeyBox.PlaceholderText = "Wrong key! Try again."
  126.     end
  127. end)
  128.  
  129. -- Button Generator
  130. local function makeButton(name, section, callback)
  131.     local btn = Instance.new("TextButton")
  132.     btn.Size = UDim2.new(1, -10, 0, 30)
  133.     btn.Text = name
  134.     btn.Font = Enum.Font.Gotham
  135.     btn.TextSize = 14
  136.     btn.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  137.     btn.TextColor3 = Color3.new(1, 1, 1)
  138.     btn.Parent = Pages[section]
  139.     btn.MouseButton1Click:Connect(callback)
  140. end
  141.  
  142. -- COM
  143. ::contentReference[oaicite:0]{index=0}
  144.  
  145.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement