Advertisement
gerisx

Untitled

Sep 5th, 2023 (edited)
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.33 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 TextLabel = Instance.new("TextLabel")
  9. local UIAspectRatioConstraint = Instance.new("UIAspectRatioConstraint")
  10. local UITextSizeConstraint = Instance.new("UITextSizeConstraint")
  11. local Profit = Instance.new("TextLabel")
  12. local UIAspectRatioConstraint_2 = Instance.new("UIAspectRatioConstraint")
  13. local UITextSizeConstraint_2 = Instance.new("UITextSizeConstraint")
  14. local Timer = Instance.new("TextLabel")
  15. local UIAspectRatioConstraint_3 = Instance.new("UIAspectRatioConstraint")
  16. local Welcomer = Instance.new("TextLabel")
  17. local UIAspectRatioConstraint_4 = Instance.new("UIAspectRatioConstraint")
  18. local UITextSizeConstraint_3 = Instance.new("UITextSizeConstraint")
  19. local UIAspectRatioConstraint_5 = Instance.new("UIAspectRatioConstraint")
  20.  
  21. -- Properties:
  22.  
  23. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  24. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  25.  
  26. Frame.Parent = ScreenGui
  27. Frame.AnchorPoint = Vector2.new(0.5, 0.5)
  28. Frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  29. Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  30. Frame.BorderSizePixel = 0
  31. Frame.Position = UDim2.new(0.5, 0, 0.5, 0)
  32. Frame.Size = UDim2.new(0, 1361, 0, 802)
  33.  
  34. TextLabel.Parent = Frame
  35. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  36. TextLabel.BackgroundTransparency = 1.000
  37. TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  38. TextLabel.BorderSizePixel = 0
  39. TextLabel.Position = UDim2.new(0.426524609, 0, 0.468827933, 0)
  40. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  41. TextLabel.Font = Enum.Font.Highway
  42. TextLabel.Text = "LOADING CURENCY" -- Initialize with 0
  43. TextLabel.TextColor3 = Color3.fromRGB(22, 22, 22)
  44. TextLabel.TextScaled = true
  45. TextLabel.TextSize = 14.000
  46. TextLabel.TextWrapped = true
  47.  
  48. UIAspectRatioConstraint.Parent = TextLabel
  49. UIAspectRatioConstraint.AspectRatio = 4.000
  50.  
  51. UITextSizeConstraint.Parent = TextLabel
  52. UITextSizeConstraint.MaxTextSize = 34
  53.  
  54. -- Function to format numbers with commas
  55. local function FormatNumberWithCommas(number)
  56. local formatted = tostring(number)
  57. local k
  58. while true do
  59. formatted, k = string.gsub(formatted, "^(-?%d+)(%d%d%d)", '%1,%2')
  60. if k == 0 then
  61. break
  62. end
  63. end
  64. return formatted
  65. end
  66.  
  67. -- Function to update the TextLabel
  68. local function UpdateTextLabel()
  69. TextLabel.Text = "$" .. FormatNumberWithCommas(game.Players.LocalPlayer.DataFolder.Currency.Value)
  70. end
  71.  
  72. -- Connect the currency change event to update the TextLabel
  73. game.Players.LocalPlayer.DataFolder.Currency.Changed:Connect(UpdateTextLabel)
  74.  
  75. UIAspectRatioConstraint.Parent = TextLabel
  76. UIAspectRatioConstraint.AspectRatio = 4.000
  77.  
  78. UITextSizeConstraint.Parent = TextLabel
  79. UITextSizeConstraint.MaxTextSize = 34
  80.  
  81. Profit.Name = "Profit"
  82. Profit.Parent = Frame
  83. Profit.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  84. Profit.BackgroundTransparency = 1.000
  85. Profit.BorderColor3 = Color3.fromRGB(0, 0, 0)
  86. Profit.BorderSizePixel = 0
  87. Profit.Position = UDim2.new(0.426524609, 0, 0.551122189, 0)
  88. Profit.Size = UDim2.new(0, 200, 0, 50)
  89. Profit.Font = Enum.Font.Highway
  90. Profit.Text = "LOADING PROFIT"
  91. Profit.TextColor3 = Color3.fromRGB(22, 22, 22)
  92. Profit.TextScaled = true
  93. Profit.TextSize = 14.000
  94. Profit.TextWrapped = true
  95.  
  96. UIAspectRatioConstraint_2.Parent = Profit
  97. UIAspectRatioConstraint_2.AspectRatio = 4.000
  98.  
  99. UITextSizeConstraint_2.Parent = Profit
  100. UITextSizeConstraint_2.MaxTextSize = 34
  101.  
  102. Timer.Name = "Timer"
  103. Timer.Parent = Frame
  104. Timer.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  105. Timer.BackgroundTransparency = 1.000
  106. Timer.BorderColor3 = Color3.fromRGB(0, 0, 0)
  107. Timer.BorderSizePixel = 0
  108. Timer.Position = UDim2.new(0.426524609, 0, 0.389027417, 0)
  109. Timer.Size = UDim2.new(0, 200, 0, 50)
  110. Timer.Font = Enum.Font.Highway
  111. Timer.Text = "LOADING TIMER"
  112. Timer.TextColor3 = Color3.fromRGB(22, 22, 22)
  113. Timer.TextScaled = true
  114. Timer.TextSize = 14.000
  115. Timer.TextWrapped = true
  116.  
  117. UIAspectRatioConstraint_3.Parent = Timer
  118. UIAspectRatioConstraint_3.AspectRatio = 4.000
  119.  
  120. Welcomer.Name = "Welcomer"
  121. Welcomer.Parent = Frame
  122. Welcomer.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  123. Welcomer.BackgroundTransparency = 1.000
  124. Welcomer.BorderColor3 = Color3.fromRGB(0, 0, 0)
  125. Welcomer.BorderSizePixel = 0
  126. Welcomer.Position = UDim2.new(0.426524609, 0, 0.304239392, 0)
  127. Welcomer.Size = UDim2.new(0, 200, 0, 50)
  128. Welcomer.Font = Enum.Font.Highway
  129. Welcomer.Text = "Welcome, " .. game.Players.LocalPlayer.Name
  130. Welcomer.TextColor3 = Color3.fromRGB(22, 22, 22)
  131. Welcomer.TextScaled = true
  132. Welcomer.TextSize = 14.000
  133. Welcomer.TextWrapped = true
  134.  
  135. UIAspectRatioConstraint_4.Parent = Welcomer
  136. UIAspectRatioConstraint_4.AspectRatio = 4.000
  137.  
  138. UITextSizeConstraint_3.Parent = Welcomer
  139. UITextSizeConstraint_3.MaxTextSize = 27
  140.  
  141. UIAspectRatioConstraint_5.Parent = Frame
  142. UIAspectRatioConstraint_5.AspectRatio = 1.697
  143.  
  144. -- Function to format time
  145. local function FormatTime(seconds)
  146. local hours = math.floor(seconds / 3600)
  147. local minutes = math.floor((seconds % 3600) / 60)
  148. local secs = seconds % 60
  149. return string.format("%02d:%02d:%02d", hours, minutes, secs)
  150. end
  151.  
  152. -- Function to format numbers with commas
  153. local function FormatNumberWithCommas(number)
  154. local formatted = tostring(number)
  155. local k
  156. while true do
  157. formatted, k = string.gsub(formatted, "^(-?%d+)(%d%d%d)", '%1,%2')
  158. if k == 0 then
  159. break
  160. end
  161. end
  162. return formatted
  163. end
  164.  
  165. -- Initialize timer variables
  166. local startTime = tick()
  167.  
  168. -- Function to update the timer label
  169. local function UpdateTimerLabel()
  170. local currentTime = tick() - startTime -- Get the elapsed time in seconds
  171. Timer.Text = FormatTime(currentTime) -- Update the timer text
  172. end
  173.  
  174. -- Store the initial currency value when the script starts
  175. local initialCurrency = game.Players.LocalPlayer.DataFolder.Currency.Value
  176.  
  177. -- Function to update the profit label
  178. local function UpdateProfitLabel()
  179. local difference = game.Players.LocalPlayer.DataFolder.Currency.Value - initialCurrency
  180. Profit.Text = "$" .. FormatNumberWithCommas(difference)
  181. end
  182.  
  183. -- Connect the currency change event to the profit label update function
  184. game.Players.LocalPlayer.DataFolder.Currency.Changed:Connect(UpdateProfitLabel)
  185.  
  186. -- Start the timer
  187. while true do
  188. wait(1)
  189. UpdateTimerLabel()
  190. end
  191.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement