Dsaqwed123

Parker Style

Apr 3rd, 2023
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
LScript 1.34 KB | Gaming | 0 0
  1. local Parker = game:GetService("ReplicatedStorage").Styles["Brawler"]:Clone()
  2. Parker.Speed.Value = 1.5
  3. Parker.Color.Value = Color3.new(0, 1, 0)
  4. Parker.Rush1.Value = "RPunch1"
  5. Parker.Rush2.Value = "RPunch2"
  6. Parker.Rush3.Value = "RPunch3"
  7. Parker.Rush4.Value = "RPunch2"
  8. Parker.Strike2.Value = "BStrike2"
  9. Parker.Strike3.Value = "BStrike3"
  10. Parker.Strike4.Value = "BStrike4"
  11. Parker.Strike5.Value = "BStrike5"
  12. Parker.VisualName.Value = "Parker"
  13. Parker.Name = "fastidiot"
  14. Parker.Parent = game:GetService("ReplicatedStorage").Styles
  15.  
  16.  
  17.  
  18. Parker.Strike1.Value = "BStrike1"
  19. local styleToChange = "Rush" --Brawler = fisticuffs, Rush = frenzy, Beast = brute.  you MUST use one of these 3 or else you cannot use the custom style.
  20. local styleToChangeTo = "fastidiot" --堂島の龍 is dragon style. you can find the styles at game.ReplicatedStorage.Styles
  21.  
  22. for i, v in pairs(game.ReplicatedStorage.Styles:FindFirstChild(styleToChange):GetChildren()) do
  23.  
  24.     v:Destroy()
  25.  
  26. end
  27.  
  28. for i, v in pairs(game.ReplicatedStorage.Styles:FindFirstChild(styleToChangeTo):GetChildren()) do
  29.     v = v:Clone()
  30.     v.Parent = game.ReplicatedStorage.Styles[styleToChange]
  31.  
  32. end
  33.  
  34. game.StarterGui:SetCore("SendNotification",{
  35.     Title = styleToChangeTo.." style loaded!";
  36.     Text = styleToChangeTo.." style has replaced "..styleToChange..".";
  37.     Button1 = "OK!";
  38. })
Add Comment
Please, Sign In to add comment