Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. --//=================================\\
  2. --|| WEAPONS/MISC CREATION
  3. --\\=================================//
  4.  
  5. title = [[
  6.  
  7. // C H A T L I S T \\
  8. AAAA
  9. I CANT BELIEVE YOUVE DONE THIS
  10. DS
  11. HEX
  12. TOPHAT
  13. NOHATS
  14. I CAN DO ANYTHING
  15. ah yes
  16. SIT
  17. NOSIT
  18. /e time (timeposition)
  19. /e play (id)
  20. thats how mafia works
  21. curb
  22. GET REKT FOOL
  23.  
  24. [E] Open/Close CHAT GUI
  25.  
  26. GUI made by @Kyutatsuki#9221
  27. ]]
  28. backgroundcolortitle = C3(0.1,0.1,0)
  29. bordercolortitle = C3(1,1,0)
  30. GUI = Instance.new("ScreenGui", Player.PlayerGui)
  31. GUI.Name = "BlackHoleKyutatsukiGui"
  32. textlabel = Instance.new("TextLabel",GUI)
  33. textlabel.AnchorPoint = Vector2.new(1,1)
  34. textlabel.Position = UDim2.new(1,500+5,1,-5)
  35. textlabel.Size = UDim2.new(0,500,0,400)
  36. textlabel.BorderSizePixel = 5
  37. textlabel.BorderColor3 = bordercolortitle
  38. textlabel.BackgroundColor3 = backgroundcolortitle
  39. textlabel.BackgroundTransparency = 0.1
  40. textlabel.TextTransparency = 0.1
  41. textlabel.TextColor3 = C3(1,1,0)
  42. textlabel.TextScaled = true
  43. textlabel.TextYAlignment = Enum.TextYAlignment.Center
  44. textlabel.Font = Enum.Font.SciFi
  45. textlabel.Text = title
  46.  
  47. guiopen = false
  48. debouncebutton = false
  49. function openhelp()
  50. if debouncebutton == false then
  51. if guiopen == false then
  52. debouncebutton = true
  53. textlabel:TweenPosition(UDim2.new(1,0-5,1,-5),Enum.EasingDirection.InOut,Enum.EasingStyle.Quad,0.2)
  54. guiopen = true
  55. wait(0.2)
  56. else
  57. debouncebutton = true
  58. textlabel:TweenPosition(UDim2.new(1,500+5,1,-5),Enum.EasingDirection.InOut,Enum.EasingStyle.Quad,0.2)
  59. guiopen = false
  60. wait(0.2)
  61. end
  62. end
  63. debouncebutton = false
  64. end
  65. openhelp()
  66.  
  67. Mouse.KeyDown:connect(function(key)
  68. if key == "e" then
  69. openhelp()
  70. end
  71. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement