Advertisement
Exploiter3030

Untitled

Feb 23rd, 2019
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. local part = Instance.new("Part")
  2. local surfacegui = Instance.new("SurfaceGui")
  3. local frame = Instance.new("Frame")
  4. local textbox = Instance.new("TextBox")
  5. local button = Instance.new("TextButton")
  6. local Label = Instance.new("TextLabel")
  7. local sound = Instance.new("Sound")
  8.  
  9. part.Parent = game.Players.LocalPlayer.Character.Head
  10. part.Position = game.Players.LocalPlayer.Character.Head.Position + Vector3.new(0, 4, 10)
  11. part.Size = Vector3.new(20.7, 17.3, 9.9)
  12. part.BrickColor = BrickColor.new("Really black")
  13. part.Anchored = true
  14. part.CanCollide = true
  15. part.Touched:connect(function()
  16. sound.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  17. sound.Name = "Pomf Pomf"
  18. sound.SoundId = "rbxassetid://1913062035"
  19. sound.Looped = true
  20. sound.EmitterSize = math.huge
  21. sound.MaxDistance = math.huge
  22. sound.Volume = math.huge
  23. sound:Play()
  24. end)
  25.  
  26. surfacegui.Parent = part
  27. surfacegui.CanvasSize = Vector2.new(800, 600)
  28.  
  29. frame.Parent = surfacegui
  30. frame.Size = UDim2.new(0, 800, 0, 600)
  31.  
  32. textbox.Parent = frame
  33. textbox.BackgroundColor3 = Color3.new(0.227451, 0.796079, 1)
  34. textbox.Size = UDim2.new(0, 400, 0, 500)
  35. textbox.TextSize = 30
  36. textbox.Text = "1913062035"
  37. textbox.Position = UDim2.new(0, 401, 0, 0)
  38.  
  39. button.Name = "Play"
  40. button.Style = "Custom"
  41. button.Parent = frame
  42. button.BackgroundColor3 = Color3.new(0.227451, 0.796079, 1)
  43. button.BackgroundTransparency = 0
  44. button.Position = UDim2.new(0, 0, 0, 0)
  45. button.Size = UDim2.new(0, 400, 0, 500)
  46. button.Font = Enum.Font.SourceSans
  47. button.Text = "Touch To Play Pomf Pomf"
  48. button.TextColor3 = Color3.new(0, 0, 0)
  49. button.TextSize = 35
  50.  
  51. Label.Parent = frame
  52. Label.BackgroundColor3 = Color3.new(1, 1, 1)
  53. Label.Size = UDim2.new(0, 800, 0, 100)
  54. Label.Font = Enum.Font.SourceSans
  55. Label.TextColor3 = Color3.new(0, 0, 0)
  56. Label.TextSize = 40
  57. Label.Text = "Pomf Pomf Player By: Hatuey_Yael aka yaelcoriano123"
  58. Label:TweenPosition(UDim2.new(0, 0, 0, 500), "In", "Back", 1)
  59. Label.BackgroundColor3 = Color3.new(0.227451, 0.796079, 1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement