Advertisement
scripterhaxer

InstaFish

Feb 20th, 2020
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.85 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local Fish = Instance.new("ScreenGui")
  7. local OpenFrame = Instance.new("Frame")
  8. local Open = Instance.new("TextButton")
  9. local Main = Instance.new("Frame")
  10. local Start = Instance.new("TextButton")
  11. local TextLabel = Instance.new("TextLabel")
  12. local TextLabel_2 = Instance.new("TextLabel")
  13. local TextLabel_3 = Instance.new("TextLabel")
  14. local TextLabel_4 = Instance.new("TextLabel")
  15. local Close = Instance.new("TextButton")
  16.  
  17. --Properties:
  18.  
  19. Fish.Name = "Fish"
  20. Fish.Parent = game.CoreGui
  21. Fish.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  22.  
  23. OpenFrame.Name = "OpenFrame"
  24. OpenFrame.Parent = Fish
  25. OpenFrame.Active = true
  26. OpenFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  27. OpenFrame.BackgroundTransparency = 0.45500001311302
  28. OpenFrame.Position = UDim2.new(0, 0, 0.939803421, 0)
  29. OpenFrame.Size = UDim2.new(0, 118, 0, 49)
  30.  
  31. Open.Name = "Open"
  32. Open.Parent = OpenFrame
  33. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  34. Open.BackgroundTransparency = 1
  35. Open.Position = UDim2.new(0, 0, 4.86150384e-07, 0)
  36. Open.Size = UDim2.new(0, 118, 0, 49)
  37. Open.Font = Enum.Font.SourceSans
  38. Open.TextColor3 = Color3.new(0, 0, 0)
  39. Open.TextSize = 14
  40. Open.MouseButton1Down:connect(function()
  41. Main.Visible = true
  42. OpenFrame.Visible = false
  43. end)
  44.  
  45.  
  46. Main.Name = "Main"
  47. Main.Parent = Fish
  48. Main.Active = true
  49. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  50. Main.BackgroundTransparency = 0.69999998807907
  51. Main.Position = UDim2.new(0.125493288, 0, 0.251842737, 0)
  52. Main.Size = UDim2.new(0, 450, 0, 208)
  53. Main.Visible = false
  54.  
  55. Start.Name = "Start"
  56. Start.Parent = Main
  57. Start.BackgroundColor3 = Color3.new(1, 1, 1)
  58. Start.BackgroundTransparency = 0.5
  59. Start.Size = UDim2.new(0, 450, 0, 50)
  60. Start.Font = Enum.Font.SourceSans
  61. Start.Text = "Here!!!"
  62. Start.TextColor3 = Color3.new(0, 0, 0)
  63. Start.TextSize = 14
  64. Start.MouseButton1Down:connect(function()
  65. local Event = game:GetService("ReplicatedStorage").CloudClientResources.Communication.Events.FishCaught
  66. Event:FireServer()
  67. end)
  68.  
  69. TextLabel.Parent = Main
  70. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  71. TextLabel.Position = UDim2.new(0.0180995483, 0, 0.336538464, 0)
  72. TextLabel.Size = UDim2.new(0, 425, 0, 21)
  73. TextLabel.Font = Enum.Font.SourceSans
  74. TextLabel.Text = "first throw your cast and execute this once"
  75. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  76. TextLabel.TextSize = 14
  77.  
  78. TextLabel_2.Parent = Main
  79. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  80. TextLabel_2.Position = UDim2.new(0.0225225221, 0, 0.495192289, 0)
  81. TextLabel_2.Size = UDim2.new(0, 434, 0, 21)
  82. TextLabel_2.Font = Enum.Font.SourceSans
  83. TextLabel_2.Text = "second wait for the bubbles and for the thing to show up and execute again and boom"
  84. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  85. TextLabel_2.TextSize = 14
  86.  
  87. TextLabel_3.Parent = Main
  88. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  89. TextLabel_3.Position = UDim2.new(0.0180995483, 0, 0.653846145, 0)
  90. TextLabel_3.Size = UDim2.new(0, 425, 0, 21)
  91. TextLabel_3.Font = Enum.Font.SourceSans
  92. TextLabel_3.Text = "don't spam it too much or you will get kicked"
  93. TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
  94. TextLabel_3.TextSize = 14
  95.  
  96. TextLabel_4.Parent = Main
  97. TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
  98. TextLabel_4.Position = UDim2.new(0.016198324, 0, 0.822422445, 0)
  99. TextLabel_4.Size = UDim2.new(0, 141, 0, 21)
  100. TextLabel_4.Font = Enum.Font.SourceSans
  101. TextLabel_4.Text = "Credits: Pinkie"
  102. TextLabel_4.TextColor3 = Color3.new(0, 0, 0)
  103. TextLabel_4.TextSize = 14
  104.  
  105. Close.Name = "Close"
  106. Close.Parent = Main
  107. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  108. Close.BackgroundTransparency = 0.5
  109. Close.Position = UDim2.new(0.886666656, 0, 0.846153855, 0)
  110. Close.Size = UDim2.new(0, 51, 0, 32)
  111. Close.Font = Enum.Font.SourceSans
  112. Close.Text = "Close"
  113. Close.TextColor3 = Color3.new(0, 0, 0)
  114. Close.TextSize = 14
  115. Close.MouseButton1Down:connect(function()
  116. OpenFrame.Visible = true
  117. Main.Visible = false
  118. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement