local Players = game:GetService("Players") local RunService = game:GetService("RunService") local player = Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.Name = "bu2spookuGUI" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local image = Instance.new("ImageLabel") image.Size = UDim2.new(0.5, 0, 0.5, 0) image.Position = UDim2.new(0.25, 0, 0.25, 0) image.BackgroundTransparency = 1 image.Image = "rbxassetid://88192103588820" image.AnchorPoint = Vector2.new(0.5, 0.5) image.Position = UDim2.new(0.5, 0, 0.5, 0) image.Parent = gui local rotation = 0 RunService.RenderStepped:Connect(function(dt) rotation = rotation + dt * 100 image.Rotation = rotation % 360 end)