Advertisement
Guest User

Untitled

a guest
Dec 11th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.38 KB | None | 0 0
  1. -- Objects
  2.  
  3. local cheek_clapper_v1 = Instance.new("ScreenGui")
  4. local login_frame = Instance.new("Frame")
  5. local header = Instance.new("TextLabel")
  6. local username = Instance.new("TextBox")
  7. local password = Instance.new("TextBox")
  8. local submit_button = Instance.new("TextButton")
  9. local yt_link = Instance.new("TextLabel")
  10. local grab_knife = Instance.new("TextButton")
  11.  
  12. -- Properties
  13.  
  14. cheek_clapper_v1.Name = "cheek_clapper _v1"
  15. cheek_clapper_v1.Parent = game.CoreGui
  16.  
  17. login_frame.Name = "login_frame"
  18. login_frame.Parent = cheek_clapper_v1
  19. login_frame.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  20. login_frame.BackgroundTransparency = 0.25
  21. login_frame.BorderSizePixel = 0
  22. login_frame.Position = UDim2.new(0.386666685, 0, 0.245530397, 0)
  23. login_frame.Size = UDim2.new(0, 373, 0, 426)
  24.  
  25. header.Name = "header"
  26. header.Parent = login_frame
  27. header.BackgroundColor3 = Color3.new(0, 0, 0)
  28. header.BorderSizePixel = 0
  29. header.Position = UDim2.new(-0.0214477219, 0, 0, 0)
  30. header.Size = UDim2.new(0, 389, 0, 79)
  31. header.Font = Enum.Font.Code
  32. header.Text = "[Cheek Clapper V1]"
  33. header.TextColor3 = Color3.new(1, 1, 1)
  34. header.TextSize = 40
  35.  
  36. username.Name = "username"
  37. username.Parent = login_frame
  38. username.BackgroundColor3 = Color3.new(0, 0, 0)
  39. username.BorderSizePixel = 0
  40. username.Position = UDim2.new(0.230563, 0, 0.291079819, 0)
  41. username.Size = UDim2.new(0, 200, 0, 50)
  42. username.Font = Enum.Font.SourceSans
  43. username.Text = "[Username]"
  44. username.TextColor3 = Color3.new(1, 1, 1)
  45. username.TextSize = 25
  46.  
  47. password.Name = "password"
  48. password.Parent = login_frame
  49. password.BackgroundColor3 = Color3.new(0, 0, 0)
  50. password.Position = UDim2.new(0.230563, 0, 0.441314548, 0)
  51. password.Size = UDim2.new(0, 200, 0, 50)
  52. password.Font = Enum.Font.SourceSans
  53. password.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  54. password.Text = "[Password]"
  55. password.TextColor3 = Color3.new(1, 1, 1)
  56. password.TextSize = 25
  57.  
  58. submit_button.Name = "submit_button"
  59. submit_button.Parent = login_frame
  60. submit_button.BackgroundColor3 = Color3.new(0, 0, 0)
  61. submit_button.Position = UDim2.new(0.324396789, 0, 0.71126765, 0)
  62. submit_button.Size = UDim2.new(0, 130, 0, 30)
  63. submit_button.Font = Enum.Font.SourceSans
  64. submit_button.Text = "[Submit]"
  65. submit_button.TextColor3 = Color3.new(1, 1, 1)
  66. submit_button.TextSize = 14
  67. submit_button.MouseButton1Down:connect(function()
  68. login_frame.Visible = false
  69. grab_knife.Visible = true
  70. end)
  71.  
  72. yt_link.Name = "yt_link"
  73. yt_link.Parent = login_frame
  74. yt_link.BackgroundColor3 = Color3.new(0, 0, 0)
  75. yt_link.Position = UDim2.new(-0.0214477219, 0, 0.882629097, 0)
  76. yt_link.Size = UDim2.new(0, 389, 0, 50)
  77. yt_link.Font = Enum.Font.SourceSans
  78. yt_link.Text = "https://www.youtube.com/channel/UCBbN5LYPtCB66-A9knC33Jg"
  79. yt_link.TextColor3 = Color3.new(1, 1, 1)
  80. yt_link.TextSize = 15
  81.  
  82. grab_knife.Name = "grab_knife"
  83. grab_knife.Parent = cheek_clapper_v1
  84. grab_knife.BackgroundColor3 = Color3.new(0, 0, 0)
  85. grab_knife.Position = UDim2.new(0.878787875, 0, 0.469606668, 0)
  86. grab_knife.Size = UDim2.new(0, 200, 0, 50)
  87. grab_knife.Visible = false
  88. grab_knife.Font = Enum.Font.SourceSans
  89. grab_knife.Text = "Grab Knife"
  90. grab_knife.TextColor3 = Color3.new(1, 1, 1)
  91. grab_knife.TextSize = 14
  92. -- Objects
  93.  
  94. local cheek_clapper_v1 = Instance.new("ScreenGui")
  95. local login_frame = Instance.new("Frame")
  96. local header = Instance.new("TextLabel")
  97. local username = Instance.new("TextBox")
  98. local password = Instance.new("TextBox")
  99. local submit_button = Instance.new("TextButton")
  100. local yt_link = Instance.new("TextLabel")
  101. local grab_knife = Instance.new("TextButton")
  102.  
  103. -- Properties
  104.  
  105. cheek_clapper_v1.Name = "cheek_clapper _v1"
  106. cheek_clapper_v1.Parent = game.CoreGui
  107.  
  108. login_frame.Name = "login_frame"
  109. login_frame.Parent = cheek_clapper_v1
  110. login_frame.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  111. login_frame.BackgroundTransparency = 0.25
  112. login_frame.BorderSizePixel = 0
  113. login_frame.Position = UDim2.new(0.386666685, 0, 0.245530397, 0)
  114. login_frame.Size = UDim2.new(0, 373, 0, 426)
  115.  
  116. header.Name = "header"
  117. header.Parent = login_frame
  118. header.BackgroundColor3 = Color3.new(0, 0, 0)
  119. header.BorderSizePixel = 0
  120. header.Position = UDim2.new(-0.0214477219, 0, 0, 0)
  121. header.Size = UDim2.new(0, 389, 0, 79)
  122. header.Font = Enum.Font.Code
  123. header.Text = "[Cheek Clapper V1]"
  124. header.TextColor3 = Color3.new(1, 1, 1)
  125. header.TextSize = 40
  126.  
  127. username.Name = "username"
  128. username.Parent = login_frame
  129. username.BackgroundColor3 = Color3.new(0, 0, 0)
  130. username.BorderSizePixel = 0
  131. username.Position = UDim2.new(0.230563, 0, 0.291079819, 0)
  132. username.Size = UDim2.new(0, 200, 0, 50)
  133. username.Font = Enum.Font.SourceSans
  134. username.Text = "[Username]"
  135. username.TextColor3 = Color3.new(1, 1, 1)
  136. username.TextSize = 25
  137.  
  138. password.Name = "password"
  139. password.Parent = login_frame
  140. password.BackgroundColor3 = Color3.new(0, 0, 0)
  141. password.Position = UDim2.new(0.230563, 0, 0.441314548, 0)
  142. password.Size = UDim2.new(0, 200, 0, 50)
  143. password.Font = Enum.Font.SourceSans
  144. password.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  145. password.Text = "[Password]"
  146. password.TextColor3 = Color3.new(1, 1, 1)
  147. password.TextSize = 25
  148.  
  149. submit_button.Name = "submit_button"
  150. submit_button.Parent = login_frame
  151. submit_button.BackgroundColor3 = Color3.new(0, 0, 0)
  152. submit_button.Position = UDim2.new(0.324396789, 0, 0.71126765, 0)
  153. submit_button.Size = UDim2.new(0, 130, 0, 30)
  154. submit_button.Font = Enum.Font.SourceSans
  155. submit_button.Text = "[Submit]"
  156. submit_button.TextColor3 = Color3.new(1, 1, 1)
  157. submit_button.TextSize = 14
  158. submit_button.MouseButton1Down:connect(function()
  159. login_frame.Visible = false
  160. grab_knife.Visible = true
  161. end)
  162.  
  163. yt_link.Name = "yt_link"
  164. yt_link.Parent = login_frame
  165. yt_link.BackgroundColor3 = Color3.new(0, 0, 0)
  166. yt_link.Position = UDim2.new(-0.0214477219, 0, 0.882629097, 0)
  167. yt_link.Size = UDim2.new(0, 389, 0, 50)
  168. yt_link.Font = Enum.Font.SourceSans
  169. yt_link.Text = "https://www.youtube.com/channel/UCBbN5LYPtCB66-A9knC33Jg"
  170. yt_link.TextColor3 = Color3.new(1, 1, 1)
  171. yt_link.TextSize = 15
  172.  
  173. grab_knife.Name = "grab_knife"
  174. grab_knife.Parent = cheek_clapper_v1
  175. grab_knife.BackgroundColor3 = Color3.new(0, 0, 0)
  176. grab_knife.Position = UDim2.new(0.878787875, 0, 0.469606668, 0)
  177. grab_knife.Size = UDim2.new(0, 200, 0, 50)
  178. grab_knife.Visible = false
  179. grab_knife.Font = Enum.Font.SourceSans
  180. grab_knife.Text = "Grab Knife"
  181. grab_knife.TextColor3 = Color3.new(1, 1, 1)
  182. grab_knife.TextSize = 14
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement