Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local part = Instance.new("Part")
- local surfacegui = Instance.new("SurfaceGui")
- local frame = Instance.new("Frame")
- local textbox = Instance.new("TextBox")
- local button = Instance.new("TextButton")
- local Label = Instance.new("TextLabel")
- local sound = Instance.new("Sound")
- part.Parent = game.Players.LocalPlayer.Character.Head
- part.Position = game.Players.LocalPlayer.Character.Head.Position + Vector3.new(0, 4, 10)
- part.Size = Vector3.new(20.7, 17.3, 9.9)
- part.BrickColor = BrickColor.new("Really black")
- part.Anchored = true
- part.CanCollide = true
- part.Touched:connect(function()
- sound.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
- sound.Name = "Pomf Pomf"
- sound.SoundId = "rbxassetid://1913062035"
- sound.Looped = true
- sound.EmitterSize = math.huge
- sound.MaxDistance = math.huge
- sound.Volume = math.huge
- sound:Play()
- end)
- surfacegui.Parent = part
- surfacegui.CanvasSize = Vector2.new(800, 600)
- frame.Parent = surfacegui
- frame.Size = UDim2.new(0, 800, 0, 600)
- textbox.Parent = frame
- textbox.BackgroundColor3 = Color3.new(0.227451, 0.796079, 1)
- textbox.Size = UDim2.new(0, 400, 0, 500)
- textbox.TextSize = 30
- textbox.Text = "1913062035"
- textbox.Position = UDim2.new(0, 401, 0, 0)
- button.Name = "Play"
- button.Style = "Custom"
- button.Parent = frame
- button.BackgroundColor3 = Color3.new(0.227451, 0.796079, 1)
- button.BackgroundTransparency = 0
- button.Position = UDim2.new(0, 0, 0, 0)
- button.Size = UDim2.new(0, 400, 0, 500)
- button.Font = Enum.Font.SourceSans
- button.Text = "Touch To Play Pomf Pomf"
- button.TextColor3 = Color3.new(0, 0, 0)
- button.TextSize = 35
- Label.Parent = frame
- Label.BackgroundColor3 = Color3.new(1, 1, 1)
- Label.Size = UDim2.new(0, 800, 0, 100)
- Label.Font = Enum.Font.SourceSans
- Label.TextColor3 = Color3.new(0, 0, 0)
- Label.TextSize = 40
- Label.Text = "Pomf Pomf Player By: Hatuey_Yael aka yaelcoriano123"
- Label:TweenPosition(UDim2.new(0, 0, 0, 500), "In", "Back", 1)
- Label.BackgroundColor3 = Color3.new(0.227451, 0.796079, 1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement