Advertisement
ERROR_CODE

test

Oct 15th, 2023 (edited)
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.04 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local SoulsLabelFrame = Instance.new("Frame")
  3. local SoulsLabel = Instance.new("TextLabel")
  4. ScreenGui.Parent = game.CoreGui
  5. SoulsLabelFrame.Name = "SoulsLabelFrame"
  6. SoulsLabelFrame.Parent = ScreenGui
  7. SoulsLabelFrame.BackgroundColor3 = Color3.new(255, 255, 255)
  8. SoulsLabelFrame.BackgroundTransparency = 1
  9. SoulsLabelFrame.Position = UDim2.new(0.105540894, 0, 0.778873265, 0)
  10. SoulsLabelFrame.Size = UDim2.new(0, 100, 0, 100)
  11. SoulsLabel.Name = "SoulsLabel"
  12. SoulsLabel.Parent = SoulsLabelFrame
  13. SoulsLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  14. SoulsLabel.BorderSizePixel = 0
  15. SoulsLabel.Draggable = false
  16. SoulsLabel.Position = UDim2.new(3, 0, -3.5, 0)
  17. SoulsLabel.Size = UDim2.new(0, 155, 0, 95)
  18. SoulsLabel.Text = "Souls: 0/3"
  19. SoulsLabel.Font = Enum.Font.IndieFlower
  20. SoulsLabel.BackgroundTransparency = 1
  21. SoulsLabel.FontSize = Enum.FontSize.Size48
  22. SoulsLabel.TextColor3 = Color3.new(255, 255, 255)
  23. SoulsLabel.TextSize = 100
  24. local z = 0
  25. while wait(1) do
  26. SoulsLabel.Text = "Souls: "..z.."/3"
  27. z = z + 1
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement