Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ScreenGui = Instance.new("ScreenGui")
- local SoulsLabelFrame = Instance.new("Frame")
- local SoulsLabel = Instance.new("TextLabel")
- ScreenGui.Parent = game.CoreGui
- SoulsLabelFrame.Name = "SoulsLabelFrame"
- SoulsLabelFrame.Parent = ScreenGui
- SoulsLabelFrame.BackgroundColor3 = Color3.new(255, 255, 255)
- SoulsLabelFrame.BackgroundTransparency = 1
- SoulsLabelFrame.Position = UDim2.new(0.105540894, 0, 0.778873265, 0)
- SoulsLabelFrame.Size = UDim2.new(0, 100, 0, 100)
- SoulsLabel.Name = "SoulsLabel"
- SoulsLabel.Parent = SoulsLabelFrame
- SoulsLabel.BackgroundColor3 = Color3.new(0, 0, 0)
- SoulsLabel.BorderSizePixel = 0
- SoulsLabel.Draggable = false
- SoulsLabel.Position = UDim2.new(3, 0, -3.5, 0)
- SoulsLabel.Size = UDim2.new(0, 155, 0, 95)
- SoulsLabel.Text = "Souls: 0/3"
- SoulsLabel.Font = Enum.Font.IndieFlower
- SoulsLabel.BackgroundTransparency = 1
- SoulsLabel.FontSize = Enum.FontSize.Size48
- SoulsLabel.TextColor3 = Color3.new(255, 255, 255)
- SoulsLabel.TextSize = 100
- local z = 0
- while wait(1) do
- SoulsLabel.Text = "Souls: "..z.."/3"
- z = z + 1
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement