ADVERTISEMENTREMOVE ADS
Auto balancer
46,921 views
Script Preview
Description
makes the bar stand over the sweet spot
(can glitch the inventory gui)
ADVERTISEMENTREMOVE ADS
19 Lines • 553 Bytes
local player = game.Players.LocalPlayer
local gui = player:WaitForChild("PlayerGui"):WaitForChild("PoopBalancingUI")
local container = gui:WaitForChild("BalancingContainer")
local movingBar = container:WaitForChild("MovingBar")
local sweetSpot = container:WaitForChild("TargetZone")
local offsetRightScale = 0.07
while true do
local targetPos = sweetSpot.Position
movingBar.Position = UDim2.new(
targetPos.X.Scale + offsetRightScale, 0,
targetPos.Y.Scale, targetPos.Y.Offset
)
task.wait(0.0002)
end
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS

Comments