Advertisement
Ehieisaac123

Just cassano 2

Apr 10th, 2025
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.13 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.BackgroundTransparency = 1 -- Fully transparent
  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.BackgroundTransparency = 1 -- Fully transparent
  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
  124. ::contentReference[oaicite:12]{index=12}
  125.  
  126.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement