Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/MaybeNotMandy/kavo-library/refs/heads/main/Redz", true))()
- local Window = Library.CreateLib("Hub By Mandy Follow @elnanocruz2", "DarkTheme")
- local StylesTab = Window:NewTab("Styles")
- local DCTab = Window:NewTab("Discord")
- local StylesSection = StylesTab:NewSection("Select a Style")
- local DCSection = DCTab:NewSection("Enjoy the server!")
- local function rollStyle(styleName)
- local player = game.Players.LocalPlayer
- local styleService = game:GetService("ReplicatedStorage").Packages.Knit.Services.StyleService.RE.Spin
- while true do
- task.wait(0.3)
- if player:FindFirstChild("PlayerStats") and player.PlayerStats:FindFirstChild("Style") then
- if player.PlayerStats.Style.Value ~= styleName then
- styleService:FireServer()
- else
- print(styleName .. " Style activated!")
- break
- end
- end
- end
- end
- local styles = {"King", "Chigiri", "Bachira", "Shidou", "Nagi", "Isagi", "Gagamaru", "Sae", "Rin"}
- for _, styleName in ipairs(styles) do
- StylesSection:NewButton(styleName, "Roll for " .. styleName .. " Style", function()
- rollStyle(styleName)
- end)
- end
- DCSection:NewButton("Discord Server", "Discord server", function()
- local link = "https://discord.com/invite/t834ZjtZ"
- setclipboard(link)
- end)
Advertisement
Add Comment
Please, Sign In to add comment