
Did anybody else experience this?
Code: Select all
GUI.GaugeVertical = Geyser.Gauge:new({
name = "GUI.GaugeVertical",
x = -250, y = -450,
height = 200,
width = 20,
orientation = "vertical",
})
GUI.GaugeVertical.back:setStyleSheet([[background-color: gray;]])
GUI.GaugeVertical.front:setStyleSheet([[background-color: red;]])
GUI.GaugeVertical:setValue(50,100)
GUI.GaugeHorizontal = Geyser.Gauge:new({
name = "GUI.GaugeHorizontal",
x = -250, y = -500,
height = 20,
width = 200,
})
GUI.GaugeHorizontal.back:setStyleSheet([[background-color: gray;]])
GUI.GaugeHorizontal.front:setStyleSheet([[background-color: red;]])
GUI.GaugeHorizontal:setValue(50,100)