-- Gui to Lua -- Version: 3.2 -- Instances: local ScreenGui = Instance.new("ScreenGui") local TextLabel = Instance.new("TextLabel") local ImageLabel = Instance.new("ImageLabel") --Properties: ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling TextLabel.Parent = ScreenGui TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextLabel.BackgroundTransparency = 1.000 TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel.BorderSizePixel = 5 TextLabel.Position = UDim2.new(0.354081124, 0, 0.356854826, 0) TextLabel.Size = UDim2.new(0, 267, 0, 141) TextLabel.Font = Enum.Font.SourceSansBold TextLabel.Text = "External ACR SS by India_Rc7, And SEC Run Scripts Live Without Filthy Modules" TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255) TextLabel.TextScaled = true TextLabel.TextSize = 14.000 TextLabel.TextStrokeTransparency = 0.000 TextLabel.TextWrapped = true ImageLabel.Parent = TextLabel ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) ImageLabel.BackgroundTransparency = 1.000 ImageLabel.BorderColor3 = Color3.fromRGB(0, 0, 0) ImageLabel.BorderSizePixel = 0 ImageLabel.Position = UDim2.new(-0.52344656, 0, -0.00404650113, 0) ImageLabel.Size = UDim2.new(0, 138, 0, 141) ImageLabel.Image = "rbxassetid://743461068" -- Scripts: local function CRJZXLB_fake_script() -- TextLabel.LocalScript local script = Instance.new('LocalScript', TextLabel) wait(3) local img = script.Parent -- Target position local targetPos = UDim2.new(0.188, 0, 0.619, 0) -- Tween settings local TweenService = game:GetService("TweenService") local info = TweenInfo.new( 1.2, -- time (seconds) Enum.EasingStyle.Quad, Enum.EasingDirection.Out ) -- Create and play tween local tween = TweenService:Create(img, info, {Position = targetPos}) tween:Play() end coroutine.wrap(CRJZXLB_fake_script)() local function NQPPTSN_fake_script() -- TextLabel.LocalScript local script = Instance.new('LocalScript', TextLabel) wait(4) local img = script.Parent -- Settings local amplitude = 15 -- how far it swings (degrees) local speed = 2 -- how fast it swings -- Make sure rotation starts at 0 img.Rotation = 0 -- Pendulum loop while true do local t = tick() * speed img.Rotation = math.sin(t) * amplitude task.wait() end end coroutine.wrap(NQPPTSN_fake_script)()