Advertisement
Guest User

sdadad

a guest
Jul 17th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.37 KB | None | 0 0
  1.  
  2. local guisc = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local input = Instance.new("TextBox")
  5. local X = Instance.new("TextButton")
  6. local Excuoter = Instance.new("TextButton")
  7. local Clear = Instance.new("TextButton")
  8. local Open = Instance.new("TextButton")
  9. local Frame2 = Instance.new("Frame")
  10. local teleport = Instance.new("TextButton")
  11. local X_2 = Instance.new("TextButton")
  12. local input_2 = Instance.new("TextBox")
  13. local Frame_2 = Instance.new("Frame")
  14. local OPEN = Instance.new("TextButton")
  15.  
  16. guisc.Name = "gui sc"
  17. guisc.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  18. guisc.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  19.  
  20. Frame.Parent = guisc
  21. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  22. Frame.BackgroundTransparency = 0.64999997615814
  23. Frame.Position = UDim2.new(0.0429223254, 0, 0.423076928, 0)
  24. Frame.Size = UDim2.new(0, 486, 0, 204)
  25. Frame.Visible = false
  26.  
  27. input.Name = "input"
  28. input.Parent = Frame
  29. input.BackgroundColor3 = Color3.new(0, 0, 0)
  30. input.BackgroundTransparency = 0.94999998807907
  31. input.Position = UDim2.new(0.0254029334, 0, 0.135041326, 0)
  32. input.Size = UDim2.new(0, 461, 0, 109)
  33. input.Font = Enum.Font.GothamBlack
  34. input.LineHeight = 3
  35. input.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  36. input.Text = ""
  37. input.TextColor3 = Color3.new(0, 0, 0)
  38. input.TextSize = 30
  39.  
  40. X.Name = "X"
  41. X.Parent = Frame
  42. X.BackgroundColor3 = Color3.new(1, 1, 1)
  43. X.BackgroundTransparency = 0.64999997615814
  44. X.Position = UDim2.new(0.92366147, 0, -0.00100907369, 0)
  45. X.Size = UDim2.new(0, 37, 0, 28)
  46. X.Font = Enum.Font.SourceSans
  47. X.Text = "X"
  48. X.TextColor3 = Color3.new(0, 0, 0)
  49. X.TextSize = 14
  50.  
  51. Excuoter.Name = "Excuoter"
  52. Excuoter.Parent = Frame
  53. Excuoter.BackgroundColor3 = Color3.new(1, 1, 1)
  54. Excuoter.BackgroundTransparency = 0.64999997615814
  55. Excuoter.Position = UDim2.new(0.0244845171, 0, 0.719088972, 0)
  56. Excuoter.Size = UDim2.new(0, 264, 0, 45)
  57. Excuoter.Font = Enum.Font.Garamond
  58. Excuoter.Text = "Excuoter"
  59. Excuoter.TextColor3 = Color3.new(0, 0, 0)
  60. Excuoter.TextSize = 50
  61.  
  62. Clear.Name = "Clear"
  63. Clear.Parent = Frame
  64. Clear.BackgroundColor3 = Color3.new(1, 1, 1)
  65. Clear.BackgroundTransparency = 0.64999997615814
  66. Clear.Position = UDim2.new(0.590328217, 0, 0.719088912, 0)
  67. Clear.Size = UDim2.new(0, 114, 0, 45)
  68. Clear.Font = Enum.Font.Garamond
  69. Clear.Text = "Clear"
  70. Clear.TextColor3 = Color3.new(0, 0, 0)
  71. Clear.TextSize = 50
  72.  
  73. Open.Name = "Open"
  74. Open.Parent = Frame
  75. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  76. Open.BackgroundTransparency = 0.64999997615814
  77. Open.Position = UDim2.new(0.843414664, 0, 0.719088972, 0)
  78. Open.Size = UDim2.new(0, 75, 0, 45)
  79. Open.Font = Enum.Font.Garamond
  80. Open.Text = "Open"
  81. Open.TextColor3 = Color3.new(0, 0, 0)
  82. Open.TextSize = 30
  83.  
  84. Frame2.Name = "Frame2"
  85. Frame2.Parent = guisc
  86. Frame2.BackgroundColor3 = Color3.new(1, 1, 1)
  87. Frame2.BackgroundTransparency = 0.64999997615814
  88. Frame2.Position = UDim2.new(0.0960219502, 0, 0.0969899595, 0)
  89. Frame2.Size = UDim2.new(0, 473, 0, 151)
  90. Frame2.Visible = false
  91.  
  92. teleport.Name = "teleport"
  93. teleport.Parent = Frame2
  94. teleport.BackgroundColor3 = Color3.new(1, 1, 1)
  95. teleport.BackgroundTransparency = 0.64999997615814
  96. teleport.Position = UDim2.new(0.224603698, 0, 0.699512541, 0)
  97. teleport.Size = UDim2.new(0, 264, 0, 45)
  98. teleport.Font = Enum.Font.Garamond
  99. teleport.Text = "Teleport"
  100. teleport.TextColor3 = Color3.new(0, 0, 0)
  101. teleport.TextSize = 50
  102. teleport.MouseButton1Down:connect(function()
  103. local ooooooof = input_2.Text
  104. local plr1 = game.Players.LocalPlayer.Character
  105. local plr2 = game.Workspace:FindFirstChild(ooooooof)
  106. plr1.HumanoidRootPart.CFrame = plr2.HumanoidRootPart.CFrame * CFrame.new(0,2,0)
  107. end)
  108.  
  109. X_2.Name = "X"
  110. X_2.Parent = Frame2
  111. X_2.BackgroundColor3 = Color3.new(1, 1, 1)
  112. X_2.BackgroundTransparency = 0.64999997615814
  113. X_2.Position = UDim2.new(-0.000228583813, 0, -0.00763159012, 0)
  114. X_2.Size = UDim2.new(0, 37, 0, 28)
  115. X_2.Font = Enum.Font.SourceSans
  116. X_2.Text = "X"
  117. X_2.TextColor3 = Color3.new(0, 0, 0)
  118. X_2.TextSize = 14
  119.  
  120. input_2.Name = "input"
  121. input_2.Parent = Frame2
  122. input_2.BackgroundColor3 = Color3.new(0, 0, 0)
  123. input_2.BackgroundTransparency = 0.94999998807907
  124. input_2.Position = UDim2.new(0.0119406963, 0, 0.227889463, 0)
  125. input_2.Size = UDim2.new(0, 461, 0, 60)
  126. input_2.Font = Enum.Font.GothamBlack
  127. input_2.LineHeight = 3
  128. input_2.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  129. input_2.Text = "Name"
  130. input_2.TextColor3 = Color3.new(0, 0, 0)
  131. input_2.TextSize = 30
  132.  
  133. Frame_2.Parent = guisc
  134. Frame_2.BackgroundColor3 = Color3.new(0, 0, 0)
  135. Frame_2.BackgroundTransparency = 0.64999997615814
  136. Frame_2.Position = UDim2.new(-0.000521600246, 0, 0.448160529, 0)
  137. Frame_2.Size = UDim2.new(0, 111, 0, 44)
  138.  
  139. OPEN.Name = "OPEN"
  140. OPEN.Parent = Frame_2
  141. OPEN.BackgroundColor3 = Color3.new(1, 1, 1)
  142. OPEN.BackgroundTransparency = 0.64999997615814
  143. OPEN.Position = UDim2.new(0.0718434975, 0, 0.174186707, 0)
  144. OPEN.Size = UDim2.new(0, 94, 0, 28)
  145. OPEN.Font = Enum.Font.GothamBold
  146. OPEN.Text = "OPEN"
  147. OPEN.TextColor3 = Color3.new(0, 0, 0)
  148. OPEN.TextSize = 30
  149.  
  150.  
  151. function SCRIPT_ADCG78_FAKESCRIPT() -- ScreenGui.LocalScript
  152. local script = Instance.new('LocalScript')
  153. script.Parent = guisc
  154. Frame2 = script.Parent.Frame2 --get the frame object (rename the .Frame to your frames name dont rename the .)
  155. Frame2.Draggable = true --set draggable to true
  156.  
  157. Frame2.Active = true
  158.  
  159. end
  160. coroutine.resume(coroutine.create(SCRIPT_ADCG78_FAKESCRIPT))
  161.  
  162. function SCRIPT_ADCG78_FAKESCRIPT() -- ScreenGui.LocalScript
  163. local script = Instance.new('LocalScript')
  164. script.Parent = guisc
  165. Frame = script.Parent.Frame --get the frame object (rename the .Frame to your frames name dont rename the .)
  166. Frame.Draggable = true --set draggable to true
  167.  
  168. Frame.Active = true
  169.  
  170. end
  171. coroutine.resume(coroutine.create(SCRIPT_ADCG78_FAKESCRIPT))
  172.  
  173. X_2.MouseButton1Down:connect(function()
  174.  
  175. if Frame2.Visible == false then
  176. Frame2.Visible = false
  177. else
  178. Frame2.Visible = false
  179. end
  180.  
  181. end)
  182.  
  183. X.MouseButton1Down:connect(function()
  184.  
  185. if Frame.Visible == false then
  186. Frame.Visible = false
  187. else
  188. Frame.Visible = false
  189. end
  190.  
  191. end)
  192.  
  193. Open.MouseButton1Down:connect(function()
  194. guisc.Frame2.Visible = true
  195. guisc.Frame2.Visible = true
  196. guisc.Open.Visible = false
  197. end)
  198.  
  199. Open.MouseButton1Down:connect(function()
  200. Open.Visible = true
  201. Frame2.Visible = false
  202. Frame2.Visible = false
  203. end)
  204.  
  205. OPEN.MouseButton1Down:connect(function()
  206. guisc.Frame.Visible = true
  207. guisc.Frame.Visible = true
  208. guisc.OPEN.Visible = false
  209. end)
  210.  
  211. OPEN.MouseButton1Down:connect(function()
  212. OPEN.Visible = true
  213. Frame.Visible = false
  214. Frame.Visible = false
  215. end)
  216.  
  217. Excuoter.MouseButton1Down:connect(function()
  218. loadstring(input.Text)()
  219. end)
  220.  
  221. Clear.MouseButton1Down:connect(function()
  222. input.Text = ""
  223. end)
  224.  
  225. game:GetService("UserInputService").InputBegan:connect(function(key)
  226. if key.KeyCode == Enum.KeyCode.N then --Replace E with the key you would like to be pressed
  227. local ooooooof = loadstring(input.Text)()
  228. local plr1 = game.Players.LocalPlayer.Character
  229. local plr2 = game.Workspace:FindFirstChild(ooooooof)
  230. plr1.HumanoidRootPart.CFrame = plr2.HumanoidRootPart.CFrame * CFrame.new(0,2,0)
  231. end
  232. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement