Advertisement
Dsaqwed123

Nagaraja style

Apr 21st, 2024
831
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
LScript 0.78 KB | Gaming | 0 0
  1. local styleToChange = "Beast" --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. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement