Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local settings =
- {
- x1 = 0,
- y1 = 0,
- x2 = 100,
- y2 = 100,
- z = 1,
- direction = 1,
- displayColor = 0x00FF00,
- groundColor = 0x0000FF,
- opacity = 100,
- maxValue = 200,
- }
- local settingsb =
- {
- x1 = 50,
- y1 = 50,
- x2 = 400,
- y2 = 300,
- z = 7,
- direction = 1,
- displayColor = 0xFF0000,
- groundColor = 0xFFFF00,
- opacity = 70,
- maxValue = 30,
- }
- os.loadAPI("glass")
- glass.setSide("right")
- local a = glass.createStatusBar(settings)
- a:setValue(40)
- a:setMaxValue(60)
- os.pullEvent("key")
- a:delete()
- os.pullEvent("key")
- local b = glass.createStatusBar(settingsb)
- b:setValue(16)
- b:setMaxValue(18)
- os.pullEvent("key")
- b:delete()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement