Ameno__GodOH

MandyKibadoBlueLock

Dec 14th, 2024
12,442
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/MaybeNotMandy/kavo-library/refs/heads/main/Redz", true))()
  2. local Window = Library.CreateLib("Hub By Mandy Follow @elnanocruz2", "DarkTheme")
  3.  
  4. local StylesTab = Window:NewTab("Styles")
  5. local DCTab = Window:NewTab("Discord")
  6.  
  7. local StylesSection = StylesTab:NewSection("Select a Style")
  8. local DCSection = DCTab:NewSection("Enjoy the server!")
  9.  
  10.  
  11. local function rollStyle(styleName)
  12. local player = game.Players.LocalPlayer
  13. local styleService = game:GetService("ReplicatedStorage").Packages.Knit.Services.StyleService.RE.Spin
  14.  
  15. while true do
  16. task.wait(0.3)
  17. if player:FindFirstChild("PlayerStats") and player.PlayerStats:FindFirstChild("Style") then
  18. if player.PlayerStats.Style.Value ~= styleName then
  19. styleService:FireServer()
  20. else
  21. print(styleName .. " Style activated!")
  22. break
  23. end
  24. end
  25. end
  26. end
  27.  
  28. local styles = {"King", "Chigiri", "Bachira", "Shidou", "Nagi", "Isagi", "Gagamaru", "Sae", "Rin"}
  29.  
  30. for _, styleName in ipairs(styles) do
  31. StylesSection:NewButton(styleName, "Roll for " .. styleName .. " Style", function()
  32. rollStyle(styleName)
  33. end)
  34. end
  35.  
  36. DCSection:NewButton("Discord Server", "Discord server", function()
  37. local link = "https://discord.com/invite/t834ZjtZ"
  38. setclipboard(link)
  39. end)
Advertisement
Add Comment
Please, Sign In to add comment