Advertisement
gerisx

tetts

Aug 15th, 2023 (edited)
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.26 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TimeFrame = Instance.new("Frame")
  9. local TimeLabel = Instance.new("TextLabel")
  10. local UICorner_4 = Instance.new("UICorner")
  11. local EarnedFrame = Instance.new("Frame")
  12. local EarnedLabel = Instance.new("TextLabel")
  13. local UICorner_3 = Instance.new("UICorner")
  14. local CurrencyFrame = Instance.new("Frame")
  15. local CurrencyLabel = Instance.new("TextLabel")
  16. local UICorner_2 = Instance.new("UICorner")
  17. local UICorner = Instance.new("UICorner")
  18.  
  19. -- Properties:
  20.  
  21. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  22. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  23.  
  24. Frame.Parent = ScreenGui
  25. Frame.BackgroundColor3 = Color3.fromRGB(21, 21, 21) -- Updated background color
  26. Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  27. Frame.BorderSizePixel = 0
  28. Frame.Size = UDim2.new(1, 0, 1, 0)
  29.  
  30. TimeFrame.Name = "TimeFrame"
  31. TimeFrame.Parent = Frame
  32. TimeFrame.BackgroundColor3 = Color3.fromRGB(59, 59, 59)
  33. TimeFrame.BorderSizePixel = 0
  34. TimeFrame.Position = UDim2.new(0.025, 0, 0.1, 0)
  35. TimeFrame.Size = UDim2.new(0.3, 0, 0.8, 0)
  36.  
  37. TimeLabel.Name = "TimeLabel"
  38. TimeLabel.Parent = TimeFrame
  39. TimeLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  40. TimeLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  41. TimeLabel.BackgroundTransparency = 1.000
  42. TimeLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  43. TimeLabel.BorderSizePixel = 0
  44. TimeLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
  45. TimeLabel.Size = UDim2.new(0.8, 0, 0.8, 0)
  46. TimeLabel.Font = Enum.Font.SourceSans
  47. TimeLabel.Text = "Time Elapsed: 00:00:00"
  48. TimeLabel.TextColor3 = Color3.fromRGB(255, 0, 0)
  49. TimeLabel.TextScaled = true
  50. TimeLabel.TextSize = 14.000
  51. TimeLabel.TextWrapped = true
  52.  
  53. UICorner_4.CornerRadius = UDim.new(0, 8)
  54. UICorner_4.Parent = TimeFrame
  55.  
  56. EarnedFrame.Name = "EarnedFrame"
  57. EarnedFrame.Parent = Frame
  58. EarnedFrame.BackgroundColor3 = Color3.fromRGB(59, 59, 59)
  59. EarnedFrame.BorderSizePixel = 0
  60. EarnedFrame.Position = UDim2.new(0.35, 0, 0.1, 0)
  61. EarnedFrame.Size = UDim2.new(0.3, 0, 0.8, 0)
  62.  
  63. EarnedLabel.Name = "EarnedLabel"
  64. EarnedLabel.Parent = EarnedFrame
  65. EarnedLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  66. EarnedLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  67. EarnedLabel.BackgroundTransparency = 1.000
  68. EarnedLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  69. EarnedLabel.BorderSizePixel = 0
  70. EarnedLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
  71. EarnedLabel.Size = UDim2.new(0.8, 0, 0.8, 0)
  72. EarnedLabel.Font = Enum.Font.SourceSans
  73. EarnedLabel.Text = "Cash Earned: 0"
  74. EarnedLabel.TextColor3 = Color3.fromRGB(0, 255, 0)
  75. EarnedLabel.TextScaled = true
  76. EarnedLabel.TextSize = 14.000
  77. EarnedLabel.TextWrapped = true
  78.  
  79. UICorner_3.CornerRadius = UDim.new(0, 8)
  80. UICorner_3.Parent = EarnedFrame
  81.  
  82. CurrencyFrame.Name = "CurrencyFrame"
  83. CurrencyFrame.Parent = Frame
  84. CurrencyFrame.BackgroundColor3 = Color3.fromRGB(59, 59, 59)
  85. CurrencyFrame.BorderSizePixel = 0
  86. CurrencyFrame.Position = UDim2.new(0.675, 0, 0.1, 0)
  87. CurrencyFrame.Size = UDim2.new(0.3, 0, 0.8, 0)
  88.  
  89. CurrencyLabel.Name = "CurrencyLabel"
  90. CurrencyLabel.Parent = CurrencyFrame
  91. CurrencyLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  92. CurrencyLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  93. CurrencyLabel.BackgroundTransparency = 1.000
  94. CurrencyLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  95. CurrencyLabel.BorderSizePixel = 0
  96. CurrencyLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
  97. CurrencyLabel.Size = UDim2.new(0.8, 0, 0.8, 0)
  98. CurrencyLabel.Font = Enum.Font.SourceSans
  99. CurrencyLabel.Text = "Currency: 0"
  100. CurrencyLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  101. CurrencyLabel.TextScaled = true
  102. CurrencyLabel.TextSize = 14.000
  103. CurrencyLabel.TextWrapped = true
  104.  
  105. UICorner_2.CornerRadius = UDim.new(0, 8)
  106. UICorner_2.Parent = CurrencyFrame
  107.  
  108. UICorner.CornerRadius = UDim.new(0, 8)
  109. UICorner.Parent = Frame
  110.  
  111. local cashEarned = 0
  112. local previousCash = game.Players.LocalPlayer.DataFolder.Currency.Value
  113. local timerValue = 0
  114.  
  115. local function FormatNumberWithCommas(number)
  116. local formatted = tostring(number)
  117. local k
  118. while true do
  119. formatted, k = string.gsub(formatted, "^(-?%d+)(%d%d%d)", '%1,%2')
  120. if k == 0 then
  121. break
  122. end
  123. end
  124. return formatted
  125. end
  126.  
  127. local function FormatTime(seconds)
  128. local hours = math.floor(seconds / 3600)
  129. local minutes = math.floor((seconds % 3600) / 60)
  130. local secs = seconds % 60
  131. return string.format("%02d:%02d:%02d", hours, minutes, secs)
  132. end
  133.  
  134. local function UpdateCurrencyLabels()
  135. local difference = game.Players.LocalPlayer.DataFolder.Currency.Value - previousCash
  136. cashEarned = cashEarned + difference
  137. EarnedLabel.Text = "Cash Earned: " .. FormatNumberWithCommas(cashEarned)
  138. CurrencyLabel.Text = "Currency: " .. FormatNumberWithCommas(game.Players.LocalPlayer.DataFolder.Currency.Value)
  139. previousCash = game.Players.LocalPlayer.DataFolder.Currency.Value
  140. end
  141.  
  142. local function UpdateTimerLabel()
  143. TimeLabel.Text = "Time Elapsed: " .. FormatTime(timerValue)
  144. end
  145.  
  146. local function StartTimer()
  147. while true do
  148. wait(1)
  149. timerValue = timerValue + 1
  150. UpdateTimerLabel()
  151. end
  152. end
  153.  
  154. game.Players.LocalPlayer.DataFolder.Currency.Changed:Connect(UpdateCurrencyLabels)
  155.  
  156. -- Start the timer when the script runs
  157. StartTimer()
  158.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement