iOSdeveloper

Untitled

Jan 30th, 2025 (edited)
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
  2.  
  3. local function set_style(desired_style)
  4. if player:FindFirstChild("PlayerStats") then
  5. local playerStats = player.PlayerStats
  6. if playerStats:FindFirstChild("Style") then
  7. playerStats.Style.Value = desired_style
  8. end
  9. end
  10. end
  11.  
  12. local Window = Library:NewWindow("Arbix Hub")
  13.  
  14. -- Mythicals Section
  15. local Section = Window:NewSection("STYLES")
  16. local textbox1 = Section:CreateTextbox("TextBox", function(value)
  17. Sty = value
  18. end)
  19.  
  20. Section:CreateButton("Get The Style", function()
  21. if Sty and Sty ~= "" then
  22. set_style(Sty)
  23. end)
  24.  
  25. local Section = Windo:NewSection("ONE TAP")
  26. Section:CreateButton("Get Shidou", function()
  27. set_style("Shidou")
  28. end)
  29. Section:CreateButton("Get Rin", function()
  30. set_style("Rin")
  31. end)
  32. Section:CreateButton("Get Sae", function()
  33. set_style("Sae")
  34. end)
  35. Section:CreateButton("Get Yukimiya", function()
  36. set_style("Yukimiya")
  37. end)
  38. Section:CreateButton("Get Aiku", function()
  39. set_style("Aiku")
  40. end)
Advertisement
Add Comment
Please, Sign In to add comment