Advertisement
gerisx

Untitled

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