DumbShit

Hide And Seek Extreme

Mar 28th, 2020
9,907
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.29 KB | None | 0 0
  1. local HidenSeek = Instance.new("ScreenGui")
  2. local Main = Instance.new("Frame")
  3. local Frame = Instance.new("Frame")
  4. local Frame_2 = Instance.new("Frame")
  5. local TextButton = Instance.new("TextButton")
  6. local TextButton_2 = Instance.new("TextButton")
  7. local TextLabel = Instance.new("TextLabel")
  8. local TextLabel_2 = Instance.new("TextLabel")
  9. local TextLabel_3 = Instance.new("TextLabel")
  10. local TextButton_3 = Instance.new("TextButton")
  11. local Frame_3 = Instance.new("Frame")
  12. local TextLabel_4 = Instance.new("TextLabel")
  13. --Properties:
  14. HidenSeek.Name = "Hide n Seek"
  15. HidenSeek.Parent = game.CoreGui
  16.  
  17. Main.Name = "Main"
  18. Main.Visible = false
  19. Main.Parent = HidenSeek
  20. Main.BackgroundColor3 = Color3.new(0.705882, 0.701961, 0.705882)
  21. Main.BorderColor3 = Color3.new(0, 0, 0)
  22. Main.BorderSizePixel = 5
  23. Main.Position = UDim2.new(0.74275136, 0, 0.367970645, 0)
  24. Main.Size = UDim2.new(0, 280, 0, 209)
  25. Main.Style = Enum.FrameStyle.DropShadow
  26.  
  27. Frame.Parent = Main
  28. Frame.BackgroundColor3 = Color3.new(0.258824, 0.254902, 0.258824)
  29. Frame.Position = UDim2.new(0.0392857119, 0, 0.0291323904, 0)
  30. Frame.Size = UDim2.new(0, 244, 0, 180)
  31.  
  32. Frame_2.Parent = Frame
  33. Frame_2.BackgroundColor3 = Color3.new(0.258824, 0.254902, 0.258824)
  34. Frame_2.BorderColor3 = Color3.new(0.666667, 0, 0)
  35. Frame_2.Position = UDim2.new(0.524590135, 0, 0.0444444455, 0)
  36. Frame_2.Size = UDim2.new(0, 96, 0, 163)
  37.  
  38. TextButton.Parent = Frame_2
  39. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  40. TextButton.BorderSizePixel = 0
  41. TextButton.Position = UDim2.new(-1.125, 0, 0.00613496918, 0)
  42. TextButton.Size = UDim2.new(0, 96, 0, 161)
  43. TextButton.Style = Enum.ButtonStyle.RobloxRoundButton
  44. TextButton.Font = Enum.Font.Code
  45. TextButton.Text = "ESP/Alarm"
  46. TextButton.TextColor3 = Color3.new(0, 0, 0)
  47. TextButton.TextSize = 16
  48. TextButton.MouseButton1Click:connect(function()
  49. local it
  50. plr=game:service'Players'.LocalPlayer
  51. char=plr.Character
  52. hum=char:FindFirstChildOfClass'Humanoid'
  53. alarm=Instance.new('Sound',workspace)
  54. alarm.Volume = 1
  55. alarm.SoundId = "rbxassetid://188908311"
  56. alarm.Looped = false
  57. alarm.Name = "FatAlarm"
  58.  
  59. function esp(a)
  60. for _, b in pairs(a.Character:children()) do
  61. if b.Name == "FatESP" or b.Name == "FatAlarm" then
  62. b:Destroy()
  63. end
  64. end
  65. if a.Character and not a.Character:FindFirstChild'FatESP' then
  66. for i = 0,5 do
  67. local sg = Instance.new("SurfaceGui")
  68. sg.Face = i
  69. sg.AlwaysOnTop = true
  70. sg.Parent = a.Character
  71. sg.Name = "FatESP"
  72. sg.Adornee = a.Character:FindFirstChild'HumanoidRootPart'
  73. local fr = Instance.new("Frame", sg)
  74. fr.BackgroundColor3 = BrickColor.new('Really red').Color
  75. fr.BorderSizePixel = 0
  76. fr.BackgroundTransparency = 0.55
  77. fr.Size = UDim2.new(1,0,1,0)
  78. end
  79. end
  80. end
  81.  
  82. while wait() do
  83. ypcall(function()
  84. hum=char:FindFirstChildOfClass'Humanoid'
  85. end)
  86. for _, a in pairs(game:service'Players':players()) do
  87. if a.Character and a:FindFirstChild'PlayerData' and a.PlayerData.It.Value == true then
  88. esp(a)
  89. it = a
  90. wait(.1)
  91. end
  92. end
  93. if it and it.Character and (it.Character.HumanoidRootPart.Position-char.HumanoidRootPart.Position).magnitude <= 125 then
  94. TextLabel_4.Visible = true
  95. Frame_3.Visible = true
  96. hum.WalkSpeed = hum.WalkSpeed * 1.1
  97. alarm:Resume()
  98. else
  99. Frame_3.Visible =false
  100. TextLabel_4.Visible =false
  101. hum.WalkSpeed = 50
  102. alarm:Stop()
  103. end
  104. end
  105. end)
  106.  
  107. TextButton_2.Parent = Frame_2
  108. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  109. TextButton_2.BorderSizePixel = 0
  110. TextButton_2.Position = UDim2.new(0, 0, 0.650306761, 0)
  111. TextButton_2.Size = UDim2.new(0, 96, 0, 56)
  112. TextButton_2.Style = Enum.ButtonStyle.RobloxRoundButton
  113. TextButton_2.Font = Enum.Font.Code
  114. TextButton_2.Text = "Close GUI"
  115. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  116. TextButton_2.TextSize = 16
  117. TextButton_2.MouseButton1Click:connect(function()
  118. Main.Visible = false
  119. TextButton_3.Visible = true
  120. end)
  121.  
  122. TextLabel.Parent = Frame_2
  123. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  124. TextLabel.BackgroundTransparency = 1
  125. TextLabel.BorderSizePixel = 0
  126. TextLabel.Position = UDim2.new(0, 0, 0.00613497198, 0)
  127. TextLabel.Size = UDim2.new(0, 96, 0, 50)
  128. TextLabel.Font = Enum.Font.SourceSans
  129. TextLabel.Text = "GUI by Lagx"
  130. TextLabel.TextColor3 = Color3.new(1, 0, 0)
  131. TextLabel.TextSize = 14
  132. TextLabel.TextStrokeColor3 = Color3.new(0.666667, 0, 0)
  133.  
  134. TextLabel_2.Parent = Frame_2
  135. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  136. TextLabel_2.BackgroundTransparency = 1
  137. TextLabel_2.BorderSizePixel = 0
  138. TextLabel_2.Position = UDim2.new(0, 0, 0.312883437, 0)
  139. TextLabel_2.Size = UDim2.new(0, 96, 0, 30)
  140. TextLabel_2.Font = Enum.Font.SourceSans
  141. TextLabel_2.Text = "Script by"
  142. TextLabel_2.TextColor3 = Color3.new(1, 0, 0)
  143. TextLabel_2.TextSize = 14
  144. TextLabel_2.TextStrokeColor3 = Color3.new(0.666667, 0, 0)
  145.  
  146. TextLabel_3.Parent = Frame_2
  147. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  148. TextLabel_3.BackgroundTransparency = 1
  149. TextLabel_3.BorderSizePixel = 0
  150. TextLabel_3.Position = UDim2.new(0, 0, 0.435582697, 0)
  151. TextLabel_3.Size = UDim2.new(0, 96, 0, 30)
  152. TextLabel_3.Font = Enum.Font.SourceSans
  153. TextLabel_3.Text = "Sharkringan"
  154. TextLabel_3.TextColor3 = Color3.new(1, 0, 0)
  155. TextLabel_3.TextSize = 14
  156. TextLabel_3.TextStrokeColor3 = Color3.new(0.666667, 0, 0)
  157.  
  158. TextButton_3.Parent = HidenSeek
  159. TextButton_3.BackgroundColor3 = Color3.new(1, 1, 1)
  160. TextButton_3.Position = UDim2.new(0, 0, 0.694376588, 0)
  161. TextButton_3.Size = UDim2.new(0, 99, 0, 50)
  162. TextButton_3.Style = Enum.ButtonStyle.RobloxRoundButton
  163. TextButton_3.Font = Enum.Font.SourceSans
  164. TextButton_3.Text = "Open GUI"
  165. TextButton_3.TextColor3 = Color3.new(0, 0, 0)
  166. TextButton_3.TextSize = 14
  167. TextButton_3.MouseButton1Click:connect(function()
  168. Main.Visible = true
  169. TextButton_3.Visible =false
  170. end)
  171.  
  172. Frame_3.Parent = HidenSeek
  173. Frame_3.Visible = false
  174. Frame_3.BackgroundColor3 = Color3.new(0.258824, 0.254902, 0.258824)
  175. Frame_3.BorderColor3 = Color3.new(0.666667, 0, 0)
  176. Frame_3.Position = UDim2.new(0.384848505, 0, 0.90220046, 0)
  177. Frame_3.Size = UDim2.new(0, 379, 0, 67)
  178. Frame_3.Style = Enum.FrameStyle.DropShadow
  179.  
  180. TextLabel_4.Parent = Frame_3
  181. TextLabel_4.Visible = false
  182. TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
  183. TextLabel_4.BackgroundTransparency = 1
  184. TextLabel_4.Position = UDim2.new(0.213720322, 0, 0, 0)
  185. TextLabel_4.Size = UDim2.new(0, 200, 0, 50)
  186. TextLabel_4.Font = Enum.Font.SourceSans
  187. TextLabel_4.Text = "Warning, IT is near!"
  188. TextLabel_4.TextColor3 = Color3.new(1, 0, 0)
  189. TextLabel_4.TextSize = 20
Add Comment
Please, Sign In to add comment