Advertisement
ERROR_CODE

SpeedRunTimer

Nov 3rd, 2024
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.67 KB | None | 0 0
  1. if game:GetService("CoreGui"):FindFirstChild("TimerGui") then
  2. game:GetService("CoreGui"):FindFirstChild("TimerGui"):Destroy()
  3. end
  4. TimerGui = Instance.new("ScreenGui")
  5. TimerFrame = Insrance.new("Frame")
  6. TimerTopBar = Instance.new("Frame")
  7. CloseTime = Instance.new("TextButton")
  8. MinTimer = Instance.new("TextButton")
  9. TimerScrollingFrame = Insrance.new("ScrollingFrame")
  10. TimerStart = Instance.new("ImageButton")
  11. TimerStop = Instance.new("ImageButton")
  12. TopBarTimerText = Instance.new("TextLabel")
  13.  
  14. local TimerHistory = {}
  15.  
  16. TimerGui.Name = "TimerGui"
  17. TimerGui.Parent = game.CoreGui
  18. TimerGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  19. game.CoreGui.TimerGui.Enabled = true
  20.  
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement