Advertisement
gerisx

Untitled

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