Dsaqwed123

Blood style

Apr 23rd, 2023
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. local BSucker = game:GetService("ReplicatedStorage").Styles["\224\164\168\224\164\190\224\164\151\224\164\176\224\164\190\224\164\156"]:Clone()
  2. BSucker.Speed.Value = 1.5
  3. BSucker.Color.Value = Color3.new(1, 1, 0)
  4. BSucker.Rush1.Value = "TFPunch1"
  5. BSucker.Rush2.Value = "FPunch2"
  6. BSucker.Rush3.Value = "FPunch1"
  7. BSucker.Rush4.Value = "FPunch2"
  8. BSucker.Rush4.Value = "FStrike3"
  9. BSucker.VisualName.Value = "BloodSucker"
  10. BSucker.Name = "BloodSucker"
  11. BSucker.Parent = game:GetService("ReplicatedStorage").Styles
  12.  
  13.  
  14. local styleToChange = "Beast" --Brawler = fisticuffs, Rush = frenzy, Beast = brute. you MUST use one of these 3 or else you cannot use the custom style.
  15. local styleToChangeTo = "BloodSucker" --堂島の龍 is dragon style. you can find the styles at game.ReplicatedStorage.Styles
  16.  
  17. for i, v in pairs(game.ReplicatedStorage.Styles:FindFirstChild(styleToChange):GetChildren()) do
  18.  
  19. v:Destroy()
  20.  
  21. end
  22.  
  23. for i, v in pairs(game.ReplicatedStorage.Styles:FindFirstChild(styleToChangeTo):GetChildren()) do
  24. v = v:Clone()
  25. v.Parent = game.ReplicatedStorage.Styles[styleToChange]
  26.  
  27. end
  28.  
  29. game.StarterGui:SetCore("SendNotification",{
  30. Title = styleToChangeTo.." style loaded!";
  31. Text = styleToChangeTo.." style has replaced "..styleToChange..".";
  32. Button1 = "OK!";
  33. })
Add Comment
Please, Sign In to add comment