Advertisement
xtrey10x

Elemental Warfare Script

Oct 14th, 2022 (edited)
2,305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet('https://raw.githubusercontent.com/VisualRoblox/Roblox/main/UI-Libraries/Visual%20UI%20Library/Source.lua'))()
  2.  
  3. local Window = Library:CreateWindow('Xtrey10x Hub', 'Elemental Warfare', 'XTREY10X HUB PREMIUM', 'rbxassetid://10618928818', false, 'VisualUIConfigs', 'Default')
  4.  
  5. local Tab = Window:CreateTab('Stats', true, 'rbxassetid://3926305904', Vector2.new(524, 44), Vector2.new(36, 36))
  6.  
  7. local Tab2 = Window:CreateTab('Gamepasses', true, 'rbxassetid://3926305904', Vector2.new(524, 44), Vector2.new(36, 36))
  8.  
  9.  
  10. local Section3 = Tab:CreateSection('Main')
  11.  
  12.  
  13. local Section2 = Tab2:CreateSection('GamePasses')
  14. --values
  15.  
  16.  
  17. --functions
  18.  
  19.  
  20. --buttons
  21.  
  22. local Slider = Section3:CreateSlider('Speed', 1, 10000, 50, Color3.fromRGB(0, 125, 255), function(Value)
  23. print(Value)
  24. game.Players.localPlayer.PlayerData.Speed.Value = Value
  25. end)
  26. local Button = Section2:CreateButton('Rage', function()
  27. print('Button Pressed')
  28. game.Players.LocalPlayer.Gamepasses.Rage.Value = true
  29. end)
  30. local Button = Section2:CreateButton('Instant Spin', function()
  31. print('Button Pressed')
  32. game.Players.LocalPlayer.Gamepasses.InstantSpin.Value = true
  33. end)
  34. local Button = Section2:CreateButton('Reaper', function()
  35. print('Button Pressed')
  36. game.Players.LocalPlayer.Gamepasses.Reaper.Value = true
  37. end)
  38. local Button = Section2:CreateButton('InfSpellStorage', function()
  39. print('Button Pressed')
  40. game.Players.LocalPlayer.Gamepasses.InfiniteSpellStorage.Value = true
  41. end)
  42. local Button = Section2:CreateButton('Pumpkin', function()
  43. print('Button Pressed')
  44. game.Players.LocalPlayer.Gamepasses.Pumpkin.Value = true
  45. end)
  46. local Button = Section2:CreateButton('Costume Turtle', function()
  47. print('Button Pressed')
  48. game.Players.LocalPlayer.Gamepasses.Turtle.Value = true
  49. end)
  50. local Button = Section2:CreateButton('Costume Tree', function()
  51. print('Button Pressed')
  52. game.Players.LocalPlayer.Gamepasses.Tree.Value = true
  53. end)
  54. local Button = Section2:CreateButton('Costume Wolf', function()
  55. print('Button Pressed')
  56. game.Players.LocalPlayer.Gamepasses.Wolf.Value = true
  57. end)
  58. local Button = Section2:CreateButton('Costume Bouncer', function()
  59. print('Button Pressed')
  60. game.Players.LocalPlayer.Gamepasses.Bouncer.Value = true
  61. end)
  62. local Button = Section2:CreateButton('Dr Kev', function()
  63. print('Button Pressed')
  64. game.Players.LocalPlayer.Gamepasses["Dr Kev"].Value = true
  65. end)
  66.  
  67.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement