Advertisement
Dsaqwed123

fixed style

Apr 18th, 2023
705
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | Gaming | 0 0
  1. 3.Nagaraja Style:
  2. local styleToChange = "Beast" --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. })
  22.  
  23. 2.Parker Style:
  24. local Parker = game:GetService("ReplicatedStorage").Styles["Brawler"]:Clone()
  25. Parker.Speed.Value = 1.5
  26. Parker.Color.Value = Color3.new(0, 1, 0)
  27. Parker.Rush1.Value = "RPunch1"
  28. Parker.Rush2.Value = "RPunch2"
  29. Parker.Rush3.Value = "RPunch3"
  30. Parker.Rush4.Value = "RPunch2"
  31. Parker.Strike2.Value = "BStrike2"
  32. Parker.Strike3.Value = "BStrike3"
  33. Parker.Strike4.Value = "BStrike4"
  34. Parker.Strike5.Value = "BStrike5"
  35. Parker.VisualName.Value = "Parker"
  36. Parker.Name = "fastidiot"
  37. Parker.Parent = game:GetService("ReplicatedStorage").Styles
  38.  
  39.  
  40.  
  41. Parker.Strike1.Value = "BStrike1"
  42. local styleToChange = "Rush" --Brawler = fisticuffs, Rush = frenzy, Beast = brute. you MUST use one of these 3 or else you cannot use the custom style.
  43. local styleToChangeTo = "fastidiot" --堂島の龍 is dragon style. you can find the styles at game.ReplicatedStorage.Styles
  44.  
  45. for i, v in pairs(game.ReplicatedStorage.Styles:FindFirstChild(styleToChange):GetChildren()) do
  46.  
  47. v:Destroy()
  48.  
  49. end
  50.  
  51. for i, v in pairs(game.ReplicatedStorage.Styles:FindFirstChild(styleToChangeTo):GetChildren()) do
  52. v = v:Clone()
  53. v.Parent = game.ReplicatedStorage.Styles[styleToChange]
  54.  
  55. end
  56.  
  57. game.StarterGui:SetCore("SendNotification",{
  58. Title = styleToChangeTo.." style loaded!";
  59. Text = styleToChangeTo.." style has replaced "..styleToChange..".";
  60. Button1 = "OK!";
  61. })
  62. 1.Dragon style:
  63.  
  64.  
  65. local styleToChange = "Brawler" --Brawler = fisticuffs, Rush = frenzy, Beast = brute. you MUST use one of these 3 or else you cannot use the custom style.
  66. local styleToChangeTo = "堂島の龍" --堂島の龍 is dragon style. you can find the styles at game.ReplicatedStorage.Styles
  67.  
  68. for i, v in pairs(game.ReplicatedStorage.Styles:FindFirstChild(styleToChange):GetChildren()) do
  69.  
  70. v:Destroy()
  71.  
  72. end
  73.  
  74. for i, v in pairs(game.ReplicatedStorage.Styles:FindFirstChild(styleToChangeTo):GetChildren()) do
  75. v = v:Clone()
  76. v.Parent = game.ReplicatedStorage.Styles[styleToChange]
  77.  
  78. end
  79.  
  80. game.StarterGui:SetCore("SendNotification",{
  81. Title = styleToChangeTo.." style loaded!";
  82. Text = styleToChangeTo.." style has replaced "..styleToChange..".";
  83. Button1 = "OK!";
  84. })
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement