Advertisement
Vortexture

Angels versus Demons Simulator: Rapidly Gain Souls

Jul 11th, 2019
3,159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.75 KB | None | 0 0
  1.  
  2. local creditsdab = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local aidez = Instance.new("ImageLabel")
  5. local names = Instance.new("TextLabel")
  6. local scriptmadeby = Instance.new("TextLabel")
  7. local scriptmadeby_2 = Instance.new("TextLabel")
  8. local x = Instance.new("TextButton")
  9.  
  10.  
  11. creditsdab.Name = "creditsdab"
  12. creditsdab.Parent = game.CoreGui
  13.  
  14. Frame.Parent = creditsdab
  15. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  16. Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0)
  17. Frame.Size = UDim2.new(0, 274, 0, 274)
  18.  
  19. aidez.Name = "aidez"
  20. aidez.Parent = Frame
  21. aidez.BackgroundColor3 = Color3.new(1, 1, 1)
  22. aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  23. aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0)
  24. aidez.Size = UDim2.new(0, 274, 0, 274)
  25. aidez.Image = "rbxassetid://0&hash=9c3f6c00707d5ebde710fd2f3efd2b5e"
  26.  
  27. names.Name = "names"
  28. names.Parent = Frame
  29. names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  30. names.BackgroundTransparency = 0.30000001192093
  31. names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  32. names.Position = UDim2.new(0, 0, 0.897810221, 0)
  33. names.Size = UDim2.new(0, 274, 0, 28)
  34. names.Font = Enum.Font.SourceSans
  35. names.Text = "Vortexturize | aidez moi#4192 | Aidez "
  36. names.TextColor3 = Color3.new(1, 1, 1)
  37. names.TextSize = 14
  38.  
  39. scriptmadeby.Name = "scriptmadeby"
  40. scriptmadeby.Parent = Frame
  41. scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  42. scriptmadeby.BackgroundTransparency = 0.30000001192093
  43. scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  44. scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0)
  45. scriptmadeby.Size = UDim2.new(0, 274, 0, 28)
  46. scriptmadeby.Font = Enum.Font.SourceSans
  47. scriptmadeby.Text = "Script made by"
  48. scriptmadeby.TextColor3 = Color3.new(1, 1, 1)
  49. scriptmadeby.TextSize = 14
  50.  
  51. scriptmadeby_2.Name = "scriptmadeby"
  52. scriptmadeby_2.Parent = Frame
  53. scriptmadeby_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  54. scriptmadeby_2.BackgroundTransparency = 0.30000001192093
  55. scriptmadeby_2.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  56. scriptmadeby_2.Position = UDim2.new(0, 0, -0.164233565, 0)
  57. scriptmadeby_2.Size = UDim2.new(0, 274, 0, 17)
  58. scriptmadeby_2.Font = Enum.Font.SourceSans
  59. scriptmadeby_2.Text = "Open the dev consol for a list of features. (F9 or Shift + F9)"
  60. scriptmadeby_2.TextColor3 = Color3.new(1, 1, 1)
  61. scriptmadeby_2.TextScaled = true
  62. scriptmadeby_2.TextSize = 14
  63. scriptmadeby_2.TextWrapped = true
  64.  
  65. x.Name = "x"
  66. x.Parent = creditsdab
  67. x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  68. x.BackgroundTransparency = 0.30000001192093
  69. x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  70. x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0)
  71. x.Size = UDim2.new(0, 28, 0, 28)
  72. x.Font = Enum.Font.SourceSansSemibold
  73. x.Text = "X"
  74. x.TextColor3 = Color3.new(1, 1, 1)
  75. x.TextSize = 30
  76.  
  77. x.MouseButton1Click:connect(function()
  78.     creditsdab:Destroy()
  79. end)
  80.  
  81. rapidsouls = false
  82. mouse = game.Players.LocalPlayer:GetMouse()
  83.  
  84. mouse.KeyDown:Connect(function(key)
  85.     if key == "f" then
  86.         for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  87.             if (v:IsA("Tool")and v.Name == "Collect Soul" or v.Name == "Greater Collect Soul") then
  88.                 v.Parent = game.Players.LocalPlayer.Character
  89.             end
  90.         end
  91.         rapidsouls = true
  92.      end
  93. end)
  94.  
  95. mouse.KeyUp:Connect(function(key)
  96.     if key == "f" then
  97.         rapidsouls = false
  98.         for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  99.             if (v:IsA("Tool")and v.Name == "Collect Soul" or v.Name == "Greater Collect Soul") then
  100.                 v:Deactivate()
  101.                 v.Parent = game.Players.LocalPlayer.Backpack
  102.             end
  103.         end
  104.     end
  105. end)
  106.  
  107. game:GetService('RunService').Stepped:connect(function()
  108.     if rapidsouls == true then
  109.         if game.Players.LocalPlayer.Character ~= nil then
  110.             if game.Players.LocalPlayer.Character:FindFirstChild("Collect Soul") then
  111.                 game.Players.LocalPlayer.Character["Collect Soul"]:Activate()
  112.             end
  113.             if game.Players.LocalPlayer.Character:FindFirstChild("Greater Collect Soul") then
  114.                 game.Players.LocalPlayer.Character["Greater Collect Soul"]:Activate()
  115.             end
  116.             for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  117.                 if (v:IsA("Tool")) then
  118.                     v.Parent = game.Players.LocalPlayer.Backpack
  119.                     v.Parent = game.Players.LocalPlayer
  120.                     v.Parent = game.Players.LocalPlayer.Backpack
  121.                     v.Parent = game.Players.LocalPlayer.Character
  122.                 end
  123.             end
  124.         end
  125.     end
  126. end)
  127.  
  128. -- Made by Aidez :OOO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement