local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui", player.PlayerGui) gui.Name = "slapminefield" gui.ResetOnSpawn = false local function build() local frame = Instance.new("Frame", gui) frame.BackgroundColor3 = Color3.new(.7, .7, .7) frame.Active = true frame.Draggable = true frame.Size = UDim2.new(.2, 0, .6, 0) frame.Position = UDim2.new(.2, 0, .2, 0) local title = Instance.new("TextLabel", frame) title.BackgroundColor3 = Color3.new(.4, .4, .4) title.BorderSizePixel = 0 title.TextColor3 = Color3.new(1, 1, 1) title.TextScaled = true title.Text = "slap minefiedl menu" title.Size = UDim2.new(1, 0, .07, 0) local button1 = Instance.new("TextButton", frame) button1.BackgroundColor3 = Color3.new(0, 1, 0) button1.TextScaled = true button1.Text = "detonate all mines" button1.AnchorPoint = Vector2.new(.5, 0) button1.Size = UDim2.new(.8, 0, .15, 0) button1.Position = UDim2.new(.5, 0, .15, 0) button1.MouseButton1Click:Connect(function() local character = player.Character or player.CharacterAdded:Wait() local hrp = character:WaitForChild("HumanoidRootPart") for i, v in pairs(workspace.Bombs:GetChildren()) do if v.Name == "beep" and v:FindFirstChild("Boom") then firetouchinterest(hrp, v.Boom, 0) firetouchinterest(hrp, v.Boom, 1) end end end) local button2 = Instance.new("TextButton", frame) button2.BackgroundColor3 = Color3.new(0, 1, 0) button2.TextScaled = true button2.Text = "get your reward" button2.AnchorPoint = Vector2.new(.5, 0) button2.Size = UDim2.new(.8, 0, .15, 0) button2.Position = UDim2.new(.5, 0, .35, 0) button2.MouseButton1Click:Connect(function() local character = player.Character or player.CharacterAdded:Wait() local hrp = character:WaitForChild("HumanoidRootPart") firetouchinterest(hrp, workspace.Trophy, 0) firetouchinterest(hrp, workspace.Trophy, 1) end) local button3 = Instance.new("TextButton", frame) button3.BackgroundColor3 = Color3.new(0, 1, 0) button3.TextScaled = true button3.Text = "go to the pro/normal servers" button3.AnchorPoint = Vector2.new(.5, 0) button3.Size = UDim2.new(.8, 0, .15, 0) button3.Position = UDim2.new(.5, 0, .55, 0) button3.MouseButton1Click:Connect(function() game.ReplicatedStorage.TPPRO:FireServer() end) local author = Instance.new("TextLabel", frame) author.BackgroundTransparency = 1 author.TextScaled = true author.Text = "made by zopium :3" author.AnchorPoint = Vector2.new(.5, 0) author.Size = UDim2.new(.8, 0, .15, 0) author.Position = UDim2.new(.5, 0, .8, 0) end if game.GameId == 7855519248 then build() else player:Kick("sir i think this is the wrong game") end