Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ScreenGui = Instance.new("ScreenGui")
- local EyesLabel = Instance.new("TextLabel")
- local EyeImage = Instance.new("ImageButton")
- local EyeImageUICorner = Instance.new("UICorner")
- local Eye = 9
- local EyeSound = Instance.new("Sound")
- local Id = "2097511282"
- EyeSound.Parent = game.Workspace
- EyeSound.SoundId = "rbxassetid://"..Id
- EyeSound.Playing = true
- EyeSound.Looped = false
- EyeSound.Volume = 1
- EyeSound:Stop()
- ScreenGui.Parent = game.CoreGui
- EyesLabel.Name = "EyesLabel"
- EyesLabel.Parent = ScreenGui
- EyesLabel.Position = UDim2.new(0.88, 0, 0.2, 0)
- EyesLabel.Size = UDim2.new(0, 155, 0, 95)
- EyesLabel.Font = Enum.Font.IndieFlower
- EyesLabel.Text = "X10"
- EyesLabel.BackgroundTransparency = 1
- EyesLabel.TextColor3 = Color3.new(255, 255, 255)
- EyesLabel.TextSize = 85
- EyeImage.Name = "EyeImage"
- EyeImage.Parent = ScreenGui
- EyeImage.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- EyeImage.Position = UDim2.new(0.85, 0, 0.25, 0)
- EyeImage.Size = UDim2.new(0, 70, 0, 50)
- EyeImage.BorderSizePixel = 0
- EyeImage.Image = "rbxassetid://15537763305"
- EyeImageUICorner.Parent = EyeImage
- EyeImageUICorner.CornerRadius = UDim.new(0.5, 0)
- EyeImage.MouseButton1Down:connect(function()
- EyesLabel.Text = "X"..Eye
- Eye = Eye - 1
- end)
- while wait() do
- if Eye == -1 then
- EyeImage.Visible = false
- EyesLabel.Visible = false
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement