ADVERTISEMENTREMOVE ADS
Game icon

Auto balancer

Script preview thumbnail
Script Preview

Description

makes the bar stand over the sweet spot

(can glitch the inventory gui)

ADVERTISEMENTREMOVE ADS
19 Lines • 553 Bytes
Raw
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

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS