Advertisement
zza

Blink V2

zza
Mar 9th, 2019
614
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1.  
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local TextLabel = Instance.new("TextLabel")
  5. local TextButton = Instance.new("TextButton")
  6. local TextButton_2 = Instance.new("TextButton")
  7. lp = game:GetService('Players').LocalPlayer
  8. -- Properties
  9. ScreenGui.Parent = game:GetService('CoreGui')
  10. Frame.Parent = ScreenGui
  11. Frame.Active = true
  12. Frame.Draggable = true
  13. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  14. Frame.Position = UDim2.new(0.0306603797, 0, 0.787106395, 0)
  15. Frame.Size = UDim2.new(0, 241, 0, 100)
  16. Frame.Style = Enum.FrameStyle.RobloxRound
  17. TextLabel.Parent = Frame
  18. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  19. TextLabel.BackgroundTransparency = 1
  20. TextLabel.Position = UDim2.new(0.0497925319, 0, -0.0799999982, 0)
  21. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  22. TextLabel.Font = Enum.Font.GothamBlack
  23. TextLabel.Text = "FE Blink Gui V2 by xFunnieuss"
  24. TextLabel.TextColor3 = Color3.new(0.941177, 0.682353, 0.0745098)
  25. TextLabel.TextSize = 14
  26. TextButton.Parent = Frame
  27. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  28. TextButton.BackgroundTransparency = 1
  29. TextButton.Position = UDim2.new(0.0436976291, 0, 0.407200336, 0)
  30. TextButton.Size = UDim2.new(0, 88, 0, 50)
  31. TextButton.Font = Enum.Font.GothamBlack
  32. TextButton.Text = "On"
  33. TextButton.TextColor3 = Color3.new(0.0862745, 0.811765, 0.109804)
  34. TextButton.TextSize = 20
  35. TextButton_2.Parent = Frame
  36. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  37. TextButton_2.BackgroundTransparency = 1
  38. TextButton_2.Position = UDim2.new(0.512577295, 0, 0.407200336, 0)
  39. TextButton_2.Size = UDim2.new(0, 88, 0, 50)
  40. TextButton_2.Font = Enum.Font.GothamBlack
  41. TextButton_2.Text = "Off"
  42. TextButton_2.TextColor3 = Color3.new(0.921569, 0.0352941, 0.0352941)
  43. TextButton_2.TextSize = 20
  44. TextButton.MouseButton1Down:connect(function()
  45. discon = game:GetService('RunService').Stepped:Connect(function()
  46. lp.Character.HumanoidRootPart.Anchored = true
  47. end)
  48. discon2 = game:GetService('RunService').Heartbeat:Connect(function()
  49. lp.Character.HumanoidRootPart.Anchored = false
  50. end)
  51. game:GetService('StarterGui'):SetCore("SendNotification", {Title = "Blink GUI Notification", Text = "Blink Is On, Press OFF to return to normal!"})
  52. end)
  53. TextButton_2.MouseButton1Down:connect(function()
  54. discon:Disconnect()
  55. discon2:Disconnect()
  56. game:GetService('StarterGui'):SetCore("SendNotification", {Title = "Blink GUI Notification", Text = "Blink Is Off, You have returned back to normal"})
  57. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement