Back to Scripts
Steal a sea monster  script  by ScriptDude999

Steal a sea monster script by ScriptDude999

ScriptBlox
Universal Free

Game: Universal Script 📌

113 Views
1 Likes
1 Dislikes
Scriptdude999

Scriptdude999

offline

Features

Give Limited Lucky Block unlock all bases and night event

Script Code

local Players = game:GetService("Players") local MarketplaceService = game:GetService("MarketplaceService") local player = Players.LocalPlayer

local gui = Instance.new("ScreenGui") gui.Name = "LuckyBlockGui" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui")

local toggle = Instance.new("TextButton") toggle.Size = UDim2.new(0, 60, 0, 60) toggle.Position = UDim2.new(0, 20, 0.5, -30) toggle.Text = "🦈" toggle.TextScaled = true toggle.BackgroundColor3 = Color3.fromRGB(120, 180, 200) toggle.TextColor3 = Color3.fromRGB(0, 0, 0) toggle.BorderSizePixel = 0 toggle.Active = true toggle.Draggable = true toggle.Parent = gui

local tCorner = Instance.new("UICorner") tCorner.CornerRadius = UDim.new(0, 12) tCorner.Parent = toggle

local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 260, 0, 270) frame.Position = UDim2.new(0.5, -130, 0.5, -135) frame.BackgroundColor3 = Color3.fromRGB(35, 35, 35) frame.BorderSizePixel = 0 frame.Visible = false frame.Active = true frame.Draggable = true frame.Parent = gui

local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 14) corner.Parent = frame

local title = Instance.new("TextLabel") title.Size = UDim2.new(1, -20, 0, 30) title.Position = UDim2.new(0, 10, 0, 10) title.BackgroundTransparency = 1 title.Text = "Made by ScriptDude999" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.TextScaled = true title.Parent = frame

local luckyBtn = Instance.new("TextButton") luckyBtn.Size = UDim2.new(0, 220, 0, 45) luckyBtn.Position = UDim2.new(0.5, -110, 0, 55) luckyBtn.Text = "Give Limited Lucky Block" luckyBtn.BackgroundColor3 = Color3.fromRGB(0, 170, 0) luckyBtn.TextColor3 = Color3.fromRGB(255, 255, 255) luckyBtn.TextScaled = true luckyBtn.BorderSizePixel = 0 luckyBtn.Parent = frame

local luckyCorner = Instance.new("UICorner") luckyCorner.CornerRadius = UDim.new(0, 10) luckyCorner.Parent = luckyBtn

local nightBtn = Instance.new("TextButton") nightBtn.Size = UDim2.new(0, 220, 0, 45) nightBtn.Position = UDim2.new(0.5, -110, 0, 110) nightBtn.Text = "Night Event" nightBtn.BackgroundColor3 = Color3.fromRGB(40, 40, 120) nightBtn.TextColor3 = Color3.fromRGB(255, 255, 255) nightBtn.TextScaled = true nightBtn.BorderSizePixel = 0 nightBtn.Parent = frame

local nightCorner = Instance.new("UICorner") nightCorner.CornerRadius = UDim.new(0, 10) nightCorner.Parent = nightBtn

local bassBtn = Instance.new("TextButton") bassBtn.Size = UDim2.new(0, 220, 0, 45) bassBtn.Position = UDim2.new(0.5, -110, 0, 165) bassBtn.Text = "Unlock All Basses" bassBtn.BackgroundColor3 = Color3.fromRGB(170, 120, 0) bassBtn.TextColor3 = Color3.fromRGB(255, 255, 255) bassBtn.TextScaled = true bassBtn.BorderSizePixel = 0 bassBtn.Parent = frame

local bassCorner = Instance.new("UICorner") bassCorner.CornerRadius = UDim.new(0, 10) bassCorner.Parent = bassBtn

local open = false

toggle.MouseButton1Click:Connect(function() open = not open frame.Visible = open end)

luckyBtn.MouseButton1Click:Connect(function() MarketplaceService:SignalPromptProductPurchaseFinished( player.UserId, 3452275090, true ) end)

nightBtn.MouseButton1Click:Connect(function() MarketplaceService:SignalPromptProductPurchaseFinished( player.UserId, 3382122169, true ) end)

bassBtn.MouseButton1Click:Connect(function() MarketplaceService:SignalPromptProductPurchaseFinished( player.UserId, 3420309083, true ) end)

Ratings & Reviews

No reviews yet. Be the first to review this script!

Comments (0)

Please login to comment

Login with Discord

Loading comments...