Dsaqwed123

Dragon Style old

Apr 24th, 2023 (edited)
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. local styleToChange = "Brawler" --Brawler = fisticuffs, Rush = frenzy, Beast = brute. you MUST use one of these 3 or else you cannot use the custom style.
  2. local styleToChangeTo = "堂島の龍" --堂島の龍 is dragon style. you can find the styles at game.ReplicatedStorage.Styles
  3.  
  4. for i, v in pairs(game.ReplicatedStorage.Styles:FindFirstChild(styleToChange):GetChildren()) do
  5.  
  6. v:Destroy()
  7.  
  8. end
  9.  
  10. for i, v in pairs(game.ReplicatedStorage.Styles:FindFirstChild(styleToChangeTo):GetChildren()) do
  11. v = v:Clone()
  12. v.Parent = game.ReplicatedStorage.Styles[styleToChange]
  13.  
  14. end
  15.  
  16. game.StarterGui:SetCore("SendNotification",{
  17. Title = styleToChangeTo.." style loaded!";
  18. Text = styleToChangeTo.." style has replaced "..styleToChange..".";
  19. Button1 = "OK!";
  20. })
Tags: Dragon Style
Add Comment
Please, Sign In to add comment