Advertisement
Idkrandomthingyyyy

parker r2f

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