Advertisement
Migas3456

FE S3X GUI

Dec 14th, 2017
1,755
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.31 KB | None | 0 0
  1. -- Objects
  2.  
  3. local FES3XGUI = Instance.new("ScreenGui")
  4. local LoginFrame = Instance.new("Frame")
  5. local info = Instance.new("TextLabel")
  6. local user = Instance.new("TextBox")
  7. local pass = Instance.new("TextBox")
  8. local login = Instance.new("TextButton")
  9. local userlabel = Instance.new("TextLabel")
  10. local passlabel = Instance.new("TextLabel")
  11. local MainFrame = Instance.new("Frame")
  12. local nameofguilol = Instance.new("TextLabel")
  13. local TextButton = Instance.new("TextButton")
  14. local thingstodeletewhenminimized = Instance.new("Frame")
  15. local fe = Instance.new("TextLabel")
  16. local victimofrape = Instance.new("TextBox")
  17. local Execute = Instance.new("TextButton")
  18. local TextLabel = Instance.new("TextLabel")
  19.  
  20. -- Properties
  21.  
  22. FES3XGUI.Name = "FE S3X GUI"
  23. if game.PlaceId == "843495510,843468296" then
  24. FES3XGUI.Parent = game.Players.LocalPlayer.PlayerGui
  25. FES3XGUI.ResetOnSpawn = false
  26. else
  27. FES3XGUI.Parent = game.CoreGui
  28. end
  29.  
  30. LoginFrame.Name = "LoginFrame"
  31. LoginFrame.Parent = FES3XGUI
  32. LoginFrame.BackgroundColor3 = Color3.new(0.552941, 0, 0)
  33. LoginFrame.Position = UDim2.new(0, 478, 0, 243)
  34. LoginFrame.Size = UDim2.new(0, 484, 0, 313)
  35.  
  36. info.Name = "info"
  37. info.Parent = LoginFrame
  38. info.BackgroundColor3 = Color3.new(0.207843, 0.207843, 0.207843)
  39. info.LayoutOrder = 17
  40. info.Size = UDim2.new(0, 484, 0, 50)
  41. info.Font = Enum.Font.Cartoon
  42. info.FontSize = Enum.FontSize.Size14
  43. info.Text = "Login To Acess The GUI"
  44. info.TextScaled = true
  45. info.TextSize = 14
  46. info.TextWrapped = true
  47.  
  48. user.Name = "user"
  49. user.Parent = LoginFrame
  50. user.BackgroundColor3 = Color3.new(0.619608, 0.619608, 0.619608)
  51. user.Position = UDim2.new(0, 107, 0, 73)
  52. user.Size = UDim2.new(0, 305, 0, 50)
  53. user.ClearTextOnFocus = false
  54. user.Font = Enum.Font.Cartoon
  55. user.FontSize = Enum.FontSize.Size14
  56. user.Text = ""
  57. user.TextScaled = true
  58. user.TextSize = 14
  59. user.TextWrapped = true
  60.  
  61. pass.Name = "pass"
  62. pass.Parent = LoginFrame
  63. pass.BackgroundColor3 = Color3.new(0.619608, 0.619608, 0.619608)
  64. pass.Position = UDim2.new(0, 107, 0, 131)
  65. pass.Size = UDim2.new(0, 305, 0, 50)
  66. pass.ClearTextOnFocus = false
  67. pass.Font = Enum.Font.Cartoon
  68. pass.FontSize = Enum.FontSize.Size14
  69. pass.Text = ""
  70. pass.TextScaled = true
  71. pass.TextSize = 14
  72. pass.TextWrapped = true
  73.  
  74. login.Name = "login"
  75. login.Parent = LoginFrame
  76. login.BackgroundColor3 = Color3.new(0.619608, 0.619608, 0.619608)
  77. login.Position = UDim2.new(0, 107, 0, 243)
  78. login.Size = UDim2.new(0, 305, 0, 50)
  79. login.Font = Enum.Font.Cartoon
  80. login.FontSize = Enum.FontSize.Size14
  81. login.Text = "Login To FE S3X GUI"
  82. login.TextScaled = true
  83. login.TextSize = 14
  84. login.TextWrapped = true
  85.  
  86. login.MouseButton1Down:connect(function()
  87. if user.Text == "HarkinianScriptsAreHot" and pass.Text == "OHYEAMRKRABS" then
  88. LoginFrame.Visible = false
  89. MainFrame.Visible = true
  90. else
  91. info.Text = "You Failed, Try Again"
  92. wait(3)
  93. info.Text = "Login To Acess The GUI"
  94. end
  95. end)
  96.  
  97. userlabel.Name = "userlabel"
  98. userlabel.Parent = LoginFrame
  99. userlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  100. userlabel.BackgroundTransparency = 1
  101. userlabel.Position = UDim2.new(0, 0, 0, 73)
  102. userlabel.Size = UDim2.new(0, 103, 0, 50)
  103. userlabel.Font = Enum.Font.Cartoon
  104. userlabel.FontSize = Enum.FontSize.Size24
  105. userlabel.Text = "Username:"
  106. userlabel.TextSize = 24
  107.  
  108. passlabel.Name = "passlabel"
  109. passlabel.Parent = LoginFrame
  110. passlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  111. passlabel.BackgroundTransparency = 1
  112. passlabel.Position = UDim2.new(0, 0, 0, 131)
  113. passlabel.Size = UDim2.new(0, 103, 0, 50)
  114. passlabel.Font = Enum.Font.Cartoon
  115. passlabel.FontSize = Enum.FontSize.Size28
  116. passlabel.Text = "Password:"
  117. passlabel.TextSize = 25
  118. passlabel.TextWrapped = true
  119.  
  120. MainFrame.Name = "MainFrame"
  121. MainFrame.Parent = FES3XGUI
  122. MainFrame.BackgroundColor3 = Color3.new(0.552941, 0, 0)
  123. MainFrame.Position = UDim2.new(0, 478, 0, 243)
  124. MainFrame.Size = UDim2.new(0, 484, 0, 313)
  125. MainFrame.Visible = false
  126. MainFrame.Active = true
  127. MainFrame.Draggable = true
  128.  
  129. nameofguilol.Name = "nameofguilol"
  130. nameofguilol.Parent = MainFrame
  131. nameofguilol.BackgroundColor3 = Color3.new(0.207843, 0.207843, 0.207843)
  132. nameofguilol.LayoutOrder = 17
  133. nameofguilol.Size = UDim2.new(0, 484, 0, 50)
  134. nameofguilol.Font = Enum.Font.Cartoon
  135. nameofguilol.FontSize = Enum.FontSize.Size28
  136. nameofguilol.Text = "FE S3X GUI BY MIGAS3456#6402"
  137. nameofguilol.TextSize = 26
  138. nameofguilol.TextWrapped = true
  139.  
  140. if game.Players.LocalPlayer.Name == "SupremeMigas" then
  141. login.MouseButton1Down:connect(function()
  142. LoginFrame.Visible = false
  143. MainFrame.Visible = true
  144. wait( )
  145. nameofguilol.Text = "Welcome Back Migas3456"
  146. wait(2)
  147. nameofguilol.Text = "FE S3X GUI BY MIGAS3456#6402"
  148. end)
  149. end
  150.  
  151. TextButton.Parent = nameofguilol
  152. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  153. TextButton.BackgroundTransparency = 1
  154. TextButton.Position = UDim2.new(0, 434, 0, 0)
  155. TextButton.Size = UDim2.new(0, 50, 0, 50)
  156. TextButton.Font = Enum.Font.Cartoon
  157. TextButton.FontSize = Enum.FontSize.Size14
  158. TextButton.Text = "-"
  159. TextButton.TextScaled = true
  160. TextButton.TextSize = 14
  161. TextButton.TextWrapped = true
  162.  
  163. thingstodeletewhenminimized.Name = "thingstodeletewhenminimized"
  164. thingstodeletewhenminimized.Parent = MainFrame
  165. thingstodeletewhenminimized.BackgroundColor3 = Color3.new(1, 1, 1)
  166. thingstodeletewhenminimized.BackgroundTransparency = 1
  167. thingstodeletewhenminimized.Size = UDim2.new(0, 484, 0, 313)
  168.  
  169. TextButton.MouseButton1Down:connect(function()
  170. if thingstodeletewhenminimized.Visible == true then
  171. thingstodeletewhenminimized.Visible = false
  172. MainFrame.Size = UDim2.new(0, 484, 0, 50)
  173. TextButton.Text = "+"
  174. else
  175. thingstodeletewhenminimized.Visible = true
  176. MainFrame.Size = UDim2.new(0, 484, 0, 313)
  177. TextButton.Text = "-"
  178. end
  179. end)
  180.  
  181. fe.Name = "fe"
  182. fe.Parent = thingstodeletewhenminimized
  183. fe.BackgroundColor3 = Color3.new(1, 1, 1)
  184. fe.BackgroundTransparency = 1
  185. fe.Position = UDim2.new(0, 0, 0, 278)
  186. fe.Size = UDim2.new(0, 484, 0, 35)
  187. fe.Font = Enum.Font.Cartoon
  188. fe.FontSize = Enum.FontSize.Size24
  189. fe.Text = "FE Is"
  190. fe.TextSize = 24
  191. fe.TextXAlignment = Enum.TextXAlignment.Left
  192.  
  193. if game:GetService('Workspace').FilteringEnabled == true then
  194. fe.Text = "FE Is On"
  195. fe.TextColor3 = BrickColor.new("Bright red").Color
  196. else
  197. fe.Text = "FE Is Off"
  198. fe.TextColor3 = BrickColor.new("Bright green").Color
  199. end
  200.  
  201. victimofrape.Name = "victimofrape"
  202. victimofrape.Parent = thingstodeletewhenminimized
  203. victimofrape.BackgroundColor3 = Color3.new(0.619608, 0.619608, 0.619608)
  204. victimofrape.Position = UDim2.new(0, 89, 0, 78)
  205. victimofrape.Size = UDim2.new(0, 305, 0, 50)
  206. victimofrape.ClearTextOnFocus = false
  207. victimofrape.Font = Enum.Font.Cartoon
  208. victimofrape.FontSize = Enum.FontSize.Size14
  209. victimofrape.Text = ""
  210. victimofrape.TextScaled = true
  211. victimofrape.TextSize = 14
  212. victimofrape.TextWrapped = true
  213. victimofrape.Visible = false
  214.  
  215. TextLabel.Parent = thingstodeletewhenminimized
  216. TextLabel.BackgroundColor3 = Color3.new(0.619608, 0.619608, 0.619608)
  217. TextLabel.Position = UDim2.new(0, 89, 0, 78)
  218. TextLabel.Size = UDim2.new(0, 305, 0, 50)
  219. TextLabel.Font = Enum.Font.Cartoon
  220. TextLabel.FontSize = Enum.FontSize.Size14
  221. TextLabel.Text = "Victim's Name Here"
  222. TextLabel.TextScaled = true
  223. TextLabel.TextSize = 14
  224. TextLabel.TextWrapped = true
  225. TextLabel.Visible = true
  226.  
  227. Execute.Name = "Execute"
  228. Execute.Parent = thingstodeletewhenminimized
  229. Execute.BackgroundColor3 = Color3.new(0.619608, 0.619608, 0.619608)
  230. Execute.Position = UDim2.new(0, 89, 0, 224)
  231. Execute.Size = UDim2.new(0, 305, 0, 50)
  232. Execute.Font = Enum.Font.Cartoon
  233. Execute.FontSize = Enum.FontSize.Size14
  234. Execute.Text = "Ok"
  235. Execute.TextScaled = true
  236. Execute.TextSize = 14
  237. Execute.TextWrapped = true
  238.  
  239.  
  240. Execute.MouseButton1Down:connect(function()
  241. if Execute.Text == "Rape" then
  242. Name = victimofrape.Text
  243. local Victim=game.Players[Name].Character
  244. local A=Instance.new'Animation'
  245. A.AnimationId='rbxassetid://148840371'
  246. local P=game:GetService'Players'.LocalPlayer
  247. local C=P.Character or P.CharacterAdded:Wait()
  248. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  249. H:Play()
  250. H:AdjustSpeed(5)
  251. game:GetService'RunService'.Stepped:Connect(function()
  252. if Victim:findFirstChild("HumanoidRootPart") then
  253. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Victim.HumanoidRootPart.CFrame * CFrame.new(0,0,1.3)
  254. end
  255. end)
  256. end
  257.  
  258. if Execute.Text == "Ok" then
  259. TextLabel.Visible = false
  260. wait( )
  261. victimofrape.Visible = true
  262. wait( )
  263. Execute.Text = "Rape"
  264. end
  265. end)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement