Advertisement
Upscalefanatic3

Glitchtale: Battle of Souls | Every Soul Script (Patched)

Jun 28th, 2019
9,143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.02 KB | None | 0 0
  1. -- Game Link: https://www.roblox.com/games/3114731048/Surface-extension-Glitchtale-Battle-of-Souls
  2. -- Script Created By: heroku | https://v3rmillion.net/showthread.php?tid=855556
  3. -- Made By: Megumu
  4.  
  5. -- Glitchtale: Battle of Souls | Become All/Any Souls
  6. if game.CoreGui:FindFirstChild'epic' then
  7. game.CoreGui.epic:Destroy()
  8. end
  9. local plr = game:GetService'Players'.LocalPlayer
  10. pos = UDim2.new(0.08, 0,0.0070, 0)
  11. local G = Instance.new'ScreenGui'
  12. G.Name = 'epic'
  13. G.Parent = game.CoreGui
  14. local S = Instance.new'ScrollingFrame'
  15. S.Parent = G
  16. S.BackgroundColor3 = Color3.new(1, 1, 1)
  17. S.Position = UDim2.new(0.28887251, 0, 0.359773368, 0)
  18. S.Size = UDim2.new(0, 188, 0, 237)
  19. S.VerticalScrollBarPosition = Enum.VerticalScrollBarPosition.Left
  20. S.ScrollBarImageColor3 = Color3.new(1,1,1)
  21. --Humans
  22. for i,H in pairs(plr.PlayerGui.HumanSouls.ScrollingFrame:GetChildren()) do
  23. local Button = Instance.new'TextButton'
  24. Button.Text = H.Name
  25. Button.Parent = S
  26. Button.BackgroundColor3 = Color3.new(1, 1, 1)
  27. Button.Position = pos
  28. Button.Size = UDim2.new(0, 157, 0, 24)
  29. Button.Font = Enum.Font.SourceSans
  30. Button.TextColor3 = Color3.new(0, 0, 0)
  31. Button.TextSize = 14
  32. pos = pos + UDim2.new(0.00, 0, 0.013, 0)
  33. Button.MouseButton1Down:connect(function()
  34. plr.PlayerGui.HumanSouls.ScrollingFrame[Button.Text][Button.Text].Equip:FireServer(game.Lighting[Button.Text])
  35. end)
  36. end
  37. for i,H in pairs(plr.PlayerGui.Monsters.ScrollingFrame:GetChildren()) do
  38. local Button = Instance.new'TextButton'
  39. Button.Text = H.Name
  40. Button.Parent = S
  41. Button.BackgroundColor3 = Color3.new(1, 1, 1)
  42. Button.Position = pos
  43. Button.Size = UDim2.new(0, 157, 0, 24)
  44. Button.Font = Enum.Font.SourceSans
  45. Button.TextColor3 = Color3.new(0, 0, 0)
  46. Button.TextSize = 14
  47. pos = pos + UDim2.new(0.00, 0, 0.013, 0)
  48. Button.MouseButton1Down:connect(function()
  49. plr.PlayerGui.Monsters.ScrollingFrame[Button.Text][Button.Text].Equip:FireServer(game.Lighting[Button.Text])
  50. end)
  51. end
  52. for i,H in pairs(plr.PlayerGui.Special.ScrollingFrame:GetChildren()) do
  53. local Button = Instance.new'TextButton'
  54. Button.Text = H.Name
  55. Button.Parent = S
  56. Button.BackgroundColor3 = Color3.new(1, 1, 1)
  57. Button.Position = pos
  58. Button.Size = UDim2.new(0, 157, 0, 24)
  59. Button.Font = Enum.Font.SourceSans
  60. Button.TextColor3 = Color3.new(0, 0, 0)
  61. Button.TextSize = 14
  62. pos = pos + UDim2.new(0.00, 0, 0.013, 0)
  63. Button.MouseButton1Down:connect(function()
  64. plr.PlayerGui.Special.ScrollingFrame[Button.Text][Button.Text].Equip:FireServer(game.Lighting[Button.Text])
  65. end)
  66. end
  67. for i,H in pairs(plr.PlayerGui.Custom.ScrollingFrame:GetChildren()) do
  68. local Button = Instance.new'TextButton'
  69. Button.Text = H.Name
  70. Button.Parent = S
  71. Button.BackgroundColor3 = Color3.new(1, 1, 1)
  72. Button.Position = pos
  73. Button.Size = UDim2.new(0, 157, 0, 24)
  74. Button.Font = Enum.Font.SourceSans
  75. Button.TextColor3 = Color3.new(0, 0, 0)
  76. Button.TextSize = 14
  77. pos = pos + UDim2.new(0.00, 0, 0.013, 0)
  78. Button.MouseButton1Down:connect(function()
  79. plr.PlayerGui.Custom.ScrollingFrame[Button.Text][Button.Text].Equip:FireServer(game.Lighting[Button.Text])
  80. end)
  81. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement