Advertisement
Blueisim

WIP Bubble Script

Aug 13th, 2016
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. wait(0.2)
  2. --variables--
  3. local player="COOLBRAYDENNOOB"--put ur name here
  4. local chatcolor="Red"--Only Works with any of these three. "Red","Green" or "Blue".
  5. --Code--
  6. print"COOLBRAYDENNOOBs Bchat GUI Loaded."
  7.  
  8. local p=game.Players:FindFirstChild(player)
  9. playergui=p.PlayerGui
  10. local gui=Instance.new("ScreenGui",playergui)
  11. --gui main setup--
  12. local b1=Instance.new("TextButton")
  13. local b2=Instance.new("TextBox")
  14. --b1--
  15. b1.Size=UDim2.new({0,100},{0,25})
  16. b1.Position=UDim2.new({0,75},{0,250})
  17. b1.BorderColor3=Color3.new(255,0,0)
  18. b1.BackgroundColor3=Color3.new(0,0,0)
  19. b1.Font="ArialBold"
  20. b1.Name="JYou"
  21. b1.Text="Bubble Chat"
  22. b1.Parent=gui
  23. --b2--
  24. b2.Size=UDim2.new({0,100},{0,25})
  25. b2.Position=UDim2.new({0,75},{0,275})
  26. b2.BorderColor3=Color3.new(255,0,0)
  27. b2.BackgroundColor3=Color3.new(0,0,0)
  28. b2.Font="ArialBold"
  29. b2.Name="JYouBox"
  30. b2.Text="Type Here"
  31. b2.Parent=gui
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement