Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local UIAspectRatioConstraint = Instance.new("UIAspectRatioConstraint")
- local UITextSizeConstraint = Instance.new("UITextSizeConstraint")
- local Profit = Instance.new("TextLabel")
- local UIAspectRatioConstraint_2 = Instance.new("UIAspectRatioConstraint")
- local UITextSizeConstraint_2 = Instance.new("UITextSizeConstraint")
- local Timer = Instance.new("TextLabel")
- local UIAspectRatioConstraint_3 = Instance.new("UIAspectRatioConstraint")
- local Welcomer = Instance.new("TextLabel")
- local UIAspectRatioConstraint_4 = Instance.new("UIAspectRatioConstraint")
- local UITextSizeConstraint_3 = Instance.new("UITextSizeConstraint")
- local UIAspectRatioConstraint_5 = Instance.new("UIAspectRatioConstraint")
- -- Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = ScreenGui
- Frame.AnchorPoint = Vector2.new(0.5, 0.5)
- Frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
- Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Frame.BorderSizePixel = 0
- Frame.Position = UDim2.new(0.5, 0, 0.5, 0)
- Frame.Size = UDim2.new(0, 1361, 0, 802)
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.BackgroundTransparency = 1.000
- TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.BorderSizePixel = 0
- TextLabel.Position = UDim2.new(0.426524609, 0, 0.468827933, 0)
- TextLabel.Size = UDim2.new(0, 200, 0, 50)
- TextLabel.Font = Enum.Font.Highway
- TextLabel.Text = "LOADING CURENCY" -- Initialize with 0
- TextLabel.TextColor3 = Color3.fromRGB(22, 22, 22)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14.000
- TextLabel.TextWrapped = true
- UIAspectRatioConstraint.Parent = TextLabel
- UIAspectRatioConstraint.AspectRatio = 4.000
- UITextSizeConstraint.Parent = TextLabel
- UITextSizeConstraint.MaxTextSize = 34
- -- Function to format numbers with commas
- local function FormatNumberWithCommas(number)
- local formatted = tostring(number)
- local k
- while true do
- formatted, k = string.gsub(formatted, "^(-?%d+)(%d%d%d)", '%1,%2')
- if k == 0 then
- break
- end
- end
- return formatted
- end
- -- Function to update the TextLabel
- local function UpdateTextLabel()
- TextLabel.Text = "$" .. FormatNumberWithCommas(game.Players.LocalPlayer.DataFolder.Currency.Value)
- end
- -- Connect the currency change event to update the TextLabel
- game.Players.LocalPlayer.DataFolder.Currency.Changed:Connect(UpdateTextLabel)
- UIAspectRatioConstraint.Parent = TextLabel
- UIAspectRatioConstraint.AspectRatio = 4.000
- UITextSizeConstraint.Parent = TextLabel
- UITextSizeConstraint.MaxTextSize = 34
- Profit.Name = "Profit"
- Profit.Parent = Frame
- Profit.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Profit.BackgroundTransparency = 1.000
- Profit.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Profit.BorderSizePixel = 0
- Profit.Position = UDim2.new(0.426524609, 0, 0.551122189, 0)
- Profit.Size = UDim2.new(0, 200, 0, 50)
- Profit.Font = Enum.Font.Highway
- Profit.Text = "LOADING PROFIT"
- Profit.TextColor3 = Color3.fromRGB(22, 22, 22)
- Profit.TextScaled = true
- Profit.TextSize = 14.000
- Profit.TextWrapped = true
- UIAspectRatioConstraint_2.Parent = Profit
- UIAspectRatioConstraint_2.AspectRatio = 4.000
- UITextSizeConstraint_2.Parent = Profit
- UITextSizeConstraint_2.MaxTextSize = 34
- Timer.Name = "Timer"
- Timer.Parent = Frame
- Timer.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Timer.BackgroundTransparency = 1.000
- Timer.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Timer.BorderSizePixel = 0
- Timer.Position = UDim2.new(0.426524609, 0, 0.389027417, 0)
- Timer.Size = UDim2.new(0, 200, 0, 50)
- Timer.Font = Enum.Font.Highway
- Timer.Text = "LOADING TIMER"
- Timer.TextColor3 = Color3.fromRGB(22, 22, 22)
- Timer.TextScaled = true
- Timer.TextSize = 14.000
- Timer.TextWrapped = true
- UIAspectRatioConstraint_3.Parent = Timer
- UIAspectRatioConstraint_3.AspectRatio = 4.000
- Welcomer.Name = "Welcomer"
- Welcomer.Parent = Frame
- Welcomer.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Welcomer.BackgroundTransparency = 1.000
- Welcomer.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Welcomer.BorderSizePixel = 0
- Welcomer.Position = UDim2.new(0.426524609, 0, 0.304239392, 0)
- Welcomer.Size = UDim2.new(0, 200, 0, 50)
- Welcomer.Font = Enum.Font.Highway
- Welcomer.Text = "Welcome, " .. game.Players.LocalPlayer.Name
- Welcomer.TextColor3 = Color3.fromRGB(22, 22, 22)
- Welcomer.TextScaled = true
- Welcomer.TextSize = 14.000
- Welcomer.TextWrapped = true
- UIAspectRatioConstraint_4.Parent = Welcomer
- UIAspectRatioConstraint_4.AspectRatio = 4.000
- UITextSizeConstraint_3.Parent = Welcomer
- UITextSizeConstraint_3.MaxTextSize = 27
- UIAspectRatioConstraint_5.Parent = Frame
- UIAspectRatioConstraint_5.AspectRatio = 1.697
- -- Function to format time
- local function FormatTime(seconds)
- local hours = math.floor(seconds / 3600)
- local minutes = math.floor((seconds % 3600) / 60)
- local secs = seconds % 60
- return string.format("%02d:%02d:%02d", hours, minutes, secs)
- end
- -- Function to format numbers with commas
- local function FormatNumberWithCommas(number)
- local formatted = tostring(number)
- local k
- while true do
- formatted, k = string.gsub(formatted, "^(-?%d+)(%d%d%d)", '%1,%2')
- if k == 0 then
- break
- end
- end
- return formatted
- end
- -- Initialize timer variables
- local startTime = tick()
- -- Function to update the timer label
- local function UpdateTimerLabel()
- local currentTime = tick() - startTime -- Get the elapsed time in seconds
- Timer.Text = FormatTime(currentTime) -- Update the timer text
- end
- -- Store the initial currency value when the script starts
- local initialCurrency = game.Players.LocalPlayer.DataFolder.Currency.Value
- -- Function to update the profit label
- local function UpdateProfitLabel()
- local difference = game.Players.LocalPlayer.DataFolder.Currency.Value - initialCurrency
- Profit.Text = "$" .. FormatNumberWithCommas(difference)
- end
- -- Connect the currency change event to the profit label update function
- game.Players.LocalPlayer.DataFolder.Currency.Changed:Connect(UpdateProfitLabel)
- -- Start the timer
- while true do
- wait(1)
- UpdateTimerLabel()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement