AbsiTheNoob

critical legends style changer

Jan 17th, 2022 (edited)
6,066
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1.  
  2. -- Script is patched, dont use it anymore
  3.  
  4.  
  5.  
  6. --// Services \\--
  7. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  8. local Players = game:GetService("Players")
  9.  
  10. --// Variables \\--
  11. local Player = Players.LocalPlayer
  12. local StatsChange = ReplicatedStorage:WaitForChild("Remotes"):WaitForChild("StatsChange")
  13. local Storage = ReplicatedStorage:WaitForChild("CS_Keys"):WaitForChild("CS_Storage_Key")
  14.  
  15. --// Get Styles \\--
  16. local Styles = {}
  17. for _, A_1 in next, Storage:GetChildren() do
  18. table.insert(Styles, A_1.Value)
  19. end
  20. table.sort(Styles)
  21.  
  22. --// UI Library \\--
  23. local Library = loadstring(game:HttpGetAsync('https://raw.githubusercontent.com/Just-Egg-Salad/roblox-scripts/main/uwuware'))()
  24. local Window = Library:CreateWindow("Style Change by [CW]")
  25. Window:AddList({
  26. text = "Style",
  27. values = Styles,
  28. callback = function(A_2)
  29. for _, A_1 in next, Storage:GetChildren() do
  30. if A_1.Value == A_2 then
  31. StatsChange:FireServer("CombatStyle", {
  32. Base = {Position = Player.Character.HumanoidRootPart.Position},
  33. CombatStyle = {Value = A_1.Name}
  34. })
  35. end
  36. end
  37. end
  38. })
  39. Library:Init()
Add Comment
Please, Sign In to add comment