Advertisement
Idkrandomthingyyyy

dragon r2f

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