iOSdeveloper

Untitled

Jan 30th, 2025
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.02 KB | None | 0 0
  1. local players = game:GetService("Players") -- Corrected the order of declaration
  2. local player = players.LocalPlayer -- Moved this line after players is defined
  3. local teams = game:GetService("Teams")
  4. local replicatedStorage = game:GetService("ReplicatedStorage")
  5. local library = loadstring(game:HttpGet(("https://raw.githubusercontent.com/Youifpg/U-ARE-MY-SUNSHINE/refs/heads/main/Gui.lua")))()
  6.  
  7. MakeWindow({
  8. Hub = {
  9. Title = "Arbix | Hub",
  10. Animation = "by : TOUKA"
  11. },
  12. Key = {
  13. KeySystem = false,
  14. Title = "Arbix hub | KEY",
  15. Description = "^ Best Hub ^",
  16. KeyLink = "https://link-center.net/1282637/thebilldev-hub-key", "https://direct-link.net/1282637/thebilldev-script-hub",
  17. Keys = {"OWNERSKEY1", "ARBIX_TR651FGAQAK", "ARBIX_YHTQHUAJ12","ARBIX_HTAYHQYNOW", "ARBIX_TYAYYAWKK"},
  18. Notifi = {
  19. Notifications = true,
  20. CorrectKey = "Running the Script...",
  21. Incorrectkey = "The key is incorrect",
  22. CopyKeyLink = "Copied to Clipboard"
  23. }
  24. }
  25. })
  26.  
  27.  
  28. MinimizeButton({
  29. Image = "",
  30. Size = {40, 40},
  31. Color = Color3.fromRGB(10, 10, 10),
  32. Corner = true,
  33. Stroke = true,
  34. StrokeColor = Color3.fromRGB(0, 0, 0)
  35. })
  36.  
  37. MakeNotifi({
  38. Title = "ARBIX | HUB ( BY TOUKA )",
  39. Text = "JOIN OUR DISCORD",
  40. Time = 5
  41. })
  42.  
  43. local Main = MakeTab({Name = "STYLE"})
  44.  
  45. local sectionStyle = AddSection(Main, {"Styles"})
  46.  
  47. local function set_style(desired_style)
  48. if player:FindFirstChild("PlayerStats") then
  49. local playerStats = player.PlayerStats
  50. if playerStats:FindFirstChild("Style") then
  51. playerStats.Style.Value = desired_style
  52. end
  53. end
  54. end
  55.  
  56. local StyleTextBox = AddTextBox(Main, {
  57. Name = "Stye Name",
  58. Default = "",
  59. TextDisappear = false,
  60. PlaceholderText = "PUT NAME",
  61. ClearText = true,
  62. Callback = function(value)
  63.  
  64.  
  65. styleId = value
  66. end
  67. })
  68.  
  69.  
  70. AddButton(Main, {
  71. Name = "GET THE STYLE",
  72. Description = "DONT SPAM!",
  73. Callback = function()
  74.  
  75. if styleId and styleId ~= "" then
  76. set_style(styleId)
  77. MakeNotifi({
  78. Title = "SUCCES",
  79. Text = " by touka",
  80. Time = 5
  81. })
  82.  
  83. else
  84.  
  85. MakeNotifi({
  86. Title = "WRONG PLS BE CARFULLY",
  87. Text = "By touka",
  88. Time = 5
  89. })
  90. end
  91. end
  92. })
  93.  
  94. local sectionStyle = AddSection(Main, {"one tap"})
  95. AddButton(Main, {
  96. Name = "Get Yukimiya",
  97. Description = "DONT SPAM!",
  98. Callback = function()
  99. set_style("Yukimiya")
  100. end
  101. })
  102. AddButton(Main, {
  103. Name = "Get Shidou",
  104. Description = "DONT SPAM!",
  105. Callback = function()
  106. set_style("Shidou")
  107. end
  108. })
  109. AddButton(Main, {
  110. Name = "Get Rin",
  111. Description = "DONT SPAM!",
  112. Callback = function()
  113. set_style("Rin")
  114. end
  115. })
  116. AddButton(Main, {
  117. Name = "Get Sae",
  118. Description = "DONT SPAM!",
  119. Callback = function()
  120. set_style("Sae")
  121. end
  122. })
  123. AddButton(Main, {
  124. Name = "Get Aiku",
  125. Description = "DONT SPAM!",
  126. Callback = function()
  127. set_style("Aiku")
  128. end
  129. })
Add Comment
Please, Sign In to add comment