-- Gui to Lua -- Version: 3.2 -- Instances: local ScreenGui = Instance.new("ScreenGui") local idk = Instance.new("ImageLabel") local TextLabel = Instance.new("TextLabel") --Properties: ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling idk.Name = "idk" idk.Parent = ScreenGui idk.BackgroundColor3 = Color3.fromRGB(255, 255, 255) idk.BackgroundTransparency = 1.000 idk.BorderColor3 = Color3.fromRGB(0, 0, 0) idk.BorderSizePixel = 0 idk.Position = UDim2.new(0.0385773666, 0, 0.67069459, 0) idk.Size = UDim2.new(0, 147, 0, 148) idk.Image = "http://www.roblox.com/asset/?id=115869771005939" TextLabel.Parent = idk TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextLabel.BackgroundTransparency = 1.000 TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel.BorderSizePixel = 0 TextLabel.Position = UDim2.new(-0.0392692722, 0, 0.636566579, 0) TextLabel.Rotation = 29.000 TextLabel.Size = UDim2.new(0, 136, 0, -45) TextLabel.Font = Enum.Font.LuckiestGuy TextLabel.Text = "skid93" TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255) TextLabel.TextScaled = true TextLabel.TextSize = 14.000 TextLabel.TextStrokeColor3 = Color3.fromRGB(255, 73, 17) TextLabel.TextStrokeTransparency = 0.000 TextLabel.TextWrapped = true -- Scripts: local function ZVPD_fake_script() -- TextLabel.Script local script = Instance.new('Script', TextLabel) while wait(.01) do script.Parent.Rotation = script.Parent.Rotation + 1 end end coroutine.wrap(ZVPD_fake_script)()