Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
1,820
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2.  
  3. local Frame = Instance.new("Frame")
  4.  
  5. local TextLabel = Instance.new("TextLabel")
  6.  
  7. local TextButton = Instance.new("TextButton")
  8.  
  9. local TextButton_2 = Instance.new("TextButton")
  10.  
  11. lp = game:GetService('Players').LocalPlayer
  12.  
  13. local mouse = lp:GetMouse()
  14.  
  15.  
  16. -- Properties
  17.  
  18. ScreenGui.Parent = game:GetService('CoreGui')
  19.  
  20. Frame.Parent = ScreenGui
  21.  
  22. Frame.Active = true
  23.  
  24. Frame.Draggable = true
  25.  
  26. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  27.  
  28. Frame.Position = UDim2.new(0.0306603797, 0, 0.787106395, 0)
  29.  
  30. Frame.Size = UDim2.new(0, 241, 0, 100)
  31.  
  32. Frame.Style = Enum.FrameStyle.RobloxRound
  33.  
  34. TextLabel.Parent = Frame
  35.  
  36. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  37.  
  38. TextLabel.BackgroundTransparency = 1
  39.  
  40. TextLabel.Position = UDim2.new(0.0497925319, 0, -0.0799999982, 0)
  41.  
  42. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  43.  
  44. TextLabel.Font = Enum.Font.GothamBlack
  45.  
  46. TextLabel.Text = "Better Blink Gui V1 by 90467"
  47.  
  48. TextLabel.TextColor3 = Color3.new(0.941177, 0.682353, 0.0745098)
  49.  
  50. TextLabel.TextSize = 14
  51.  
  52. TextButton.Parent = Frame
  53.  
  54. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  55.  
  56. TextButton.BackgroundTransparency = 1
  57.  
  58. TextButton.Position = UDim2.new(0.0436976291, 0, 0.407200336, 0)
  59.  
  60. TextButton.Size = UDim2.new(0, 88, 0, 50)
  61.  
  62. TextButton.Font = Enum.Font.GothamBlack
  63.  
  64. TextButton.Text = "Untoggled"
  65.  
  66. TextButton.TextColor3 = Color3.new(0.921569, 0.0352941, 0.0352941)
  67.  
  68. TextButton.TextSize = 20
  69.  
  70.  
  71. mouse.KeyDown:Connect(function(key)
  72. if key == 'q' then
  73.  
  74. TextButton.TextColor3 = Color3.new(0.0862745, 0.811765, 0.109804)
  75.  
  76. TextButton.Text = "Toggled"
  77.  
  78. game:GetService('StarterGui'):SetCore("SendNotification", {Title = "Blink GUI Notification", Text = "Blink Is On, E to turn off"})
  79.  
  80. discon = game:GetService('RunService').Stepped:Connect(function()
  81.  
  82. lp.Character.HumanoidRootPart.Anchored = true
  83.  
  84. end)
  85.  
  86. end
  87.  
  88. discon2 = game:GetService('RunService').Heartbeat:Connect(function()
  89. lp.Character.HumanoidRootPart.Anchored = false
  90.  
  91. end)
  92.  
  93. end)
  94.  
  95. mouse.KeyDown:Connect(function(key)
  96. if key == 'e' then
  97.  
  98. TextButton.Text = "Untoggled"
  99.  
  100. TextButton.TextColor3 = Color3.new(0.921569, 0.0352941, 0.0352941)
  101.  
  102. game:GetService('StarterGui'):SetCore("SendNotification", {Title = "Blink GUI Notification", Text = "Blink Is Off, Q to turn on"})
  103.  
  104. discon:Disconnect()
  105.  
  106. discon2:Disconnect()
  107.  
  108. end
  109. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement