Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Game Link: https://www.roblox.com/games/3114731048/Surface-extension-Glitchtale-Battle-of-Souls
- -- Script Created By: heroku | https://v3rmillion.net/showthread.php?tid=855556
- -- Made By: Megumu
- -- Glitchtale: Battle of Souls | Become All/Any Souls
- if game.CoreGui:FindFirstChild'epic' then
- game.CoreGui.epic:Destroy()
- end
- local plr = game:GetService'Players'.LocalPlayer
- pos = UDim2.new(0.08, 0,0.0070, 0)
- local G = Instance.new'ScreenGui'
- G.Name = 'epic'
- G.Parent = game.CoreGui
- local S = Instance.new'ScrollingFrame'
- S.Parent = G
- S.BackgroundColor3 = Color3.new(1, 1, 1)
- S.Position = UDim2.new(0.28887251, 0, 0.359773368, 0)
- S.Size = UDim2.new(0, 188, 0, 237)
- S.VerticalScrollBarPosition = Enum.VerticalScrollBarPosition.Left
- S.ScrollBarImageColor3 = Color3.new(1,1,1)
- --Humans
- for i,H in pairs(plr.PlayerGui.HumanSouls.ScrollingFrame:GetChildren()) do
- local Button = Instance.new'TextButton'
- Button.Text = H.Name
- Button.Parent = S
- Button.BackgroundColor3 = Color3.new(1, 1, 1)
- Button.Position = pos
- Button.Size = UDim2.new(0, 157, 0, 24)
- Button.Font = Enum.Font.SourceSans
- Button.TextColor3 = Color3.new(0, 0, 0)
- Button.TextSize = 14
- pos = pos + UDim2.new(0.00, 0, 0.013, 0)
- Button.MouseButton1Down:connect(function()
- plr.PlayerGui.HumanSouls.ScrollingFrame[Button.Text][Button.Text].Equip:FireServer(game.Lighting[Button.Text])
- end)
- end
- for i,H in pairs(plr.PlayerGui.Monsters.ScrollingFrame:GetChildren()) do
- local Button = Instance.new'TextButton'
- Button.Text = H.Name
- Button.Parent = S
- Button.BackgroundColor3 = Color3.new(1, 1, 1)
- Button.Position = pos
- Button.Size = UDim2.new(0, 157, 0, 24)
- Button.Font = Enum.Font.SourceSans
- Button.TextColor3 = Color3.new(0, 0, 0)
- Button.TextSize = 14
- pos = pos + UDim2.new(0.00, 0, 0.013, 0)
- Button.MouseButton1Down:connect(function()
- plr.PlayerGui.Monsters.ScrollingFrame[Button.Text][Button.Text].Equip:FireServer(game.Lighting[Button.Text])
- end)
- end
- for i,H in pairs(plr.PlayerGui.Special.ScrollingFrame:GetChildren()) do
- local Button = Instance.new'TextButton'
- Button.Text = H.Name
- Button.Parent = S
- Button.BackgroundColor3 = Color3.new(1, 1, 1)
- Button.Position = pos
- Button.Size = UDim2.new(0, 157, 0, 24)
- Button.Font = Enum.Font.SourceSans
- Button.TextColor3 = Color3.new(0, 0, 0)
- Button.TextSize = 14
- pos = pos + UDim2.new(0.00, 0, 0.013, 0)
- Button.MouseButton1Down:connect(function()
- plr.PlayerGui.Special.ScrollingFrame[Button.Text][Button.Text].Equip:FireServer(game.Lighting[Button.Text])
- end)
- end
- for i,H in pairs(plr.PlayerGui.Custom.ScrollingFrame:GetChildren()) do
- local Button = Instance.new'TextButton'
- Button.Text = H.Name
- Button.Parent = S
- Button.BackgroundColor3 = Color3.new(1, 1, 1)
- Button.Position = pos
- Button.Size = UDim2.new(0, 157, 0, 24)
- Button.Font = Enum.Font.SourceSans
- Button.TextColor3 = Color3.new(0, 0, 0)
- Button.TextSize = 14
- pos = pos + UDim2.new(0.00, 0, 0.013, 0)
- Button.MouseButton1Down:connect(function()
- plr.PlayerGui.Custom.ScrollingFrame[Button.Text][Button.Text].Equip:FireServer(game.Lighting[Button.Text])
- end)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement