ProlExploiter

Survivor GUI

Dec 28th, 2017
367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. local survivor = Instance.new("ScreenGui")
  2. local gui = Instance.new("Frame")
  3. local tp = Instance.new("TextButton")
  4. local idols = Instance.new("TextButton")
  5. local close = Instance.new("ImageButton")
  6. local open = Instance.new("TextButton")
  7. survivor.Name = "survivor"
  8. survivor.Parent = game.CoreGui
  9.  
  10. gui.Name = "gui"
  11. gui.Parent = survivor
  12. gui.BackgroundColor3 = Color3.new(1, 1, 1)
  13. gui.BorderSizePixel = 5
  14. gui.Position = UDim2.new(0.286785364, 0, 0.17786561, 0)
  15. gui.Size = UDim2.new(0, 328, 0, 297)
  16. gui.Visible = false
  17.  
  18. tp.Name = "tp"
  19. tp.Parent = gui
  20. tp.BackgroundColor3 = Color3.new(1, 1, 1)
  21. tp.BorderSizePixel = 5
  22. tp.Position = UDim2.new(0.076219514, 0, 0.286195278, 0)
  23. tp.Size = UDim2.new(0, 97, 0, 50)
  24. tp.Font = Enum.Font.SourceSansBold
  25. tp.FontSize = Enum.FontSize.Size18
  26. tp.Text = "Click TP"
  27. tp.TextSize = 15
  28.  
  29. idols.Name = "idols"
  30. idols.Parent = gui
  31. idols.BackgroundColor3 = Color3.new(1, 1, 1)
  32. idols.BorderSizePixel = 5
  33. idols.Position = UDim2.new(0.626524329, 0, 0.286195278, 0)
  34. idols.Size = UDim2.new(0, 97, 0, 50)
  35. idols.Font = Enum.Font.SourceSansBold
  36. idols.FontSize = Enum.FontSize.Size18
  37. idols.Text = "TP Idols"
  38. idols.TextSize = 15
  39. idols.TextStrokeTransparency = 3
  40.  
  41. close.Name = "close"
  42. close.Parent = gui
  43. close.BackgroundColor3 = Color3.new(1, 1, 1)
  44. close.BackgroundTransparency = 1
  45. close.BorderSizePixel = 0
  46. close.Position = UDim2.new(0, 0, 0.875420868, 0)
  47. close.Size = UDim2.new(0, 41, 0, 37)
  48. close.Image = "rbxassetid://247421309"
  49.  
  50. open.Name = "open"
  51. open.Parent = survivor
  52. open.BackgroundColor3 = Color3.new(1, 1, 1)
  53. open.BorderSizePixel = 5
  54. open.Position = UDim2.new(0.00562324282, 0, 0.897233188, 0)
  55. open.Size = UDim2.new(0, 78, 0, 40)
  56. open.ZIndex = 2
  57. open.Font = Enum.Font.SourceSansBold
  58. open.FontSize = Enum.FontSize.Size18
  59. open.Text = "Open"
  60. open.TextSize = 15
  61.  
  62. open.MouseButton1Click:connect(function()
  63. gui.Visible = true
  64. open.Visible = false
  65. end)
  66. close.MouseButton1Click:connect(function()
  67. open.Visible = true
  68. gui.Visible = false
  69. end)
  70. tp.MouseButton1Click:connect(function()
  71. game.StarterGui:SetCoreGuiEnabled(2, true)
  72. wait()
  73. mouse = game.Players.LocalPlayer:GetMouse()
  74. tool = Instance.new("Tool")
  75. tool.RequiresHandle = false
  76. tool.Name = "Click Teleport"
  77. tool.Activated:connect(function()
  78. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  79. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  80. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  81. end)
  82. tool.Parent = game.Players.LocalPlayer.Backpack
  83. end)
  84. idols.MouseButton1Click:connect(function()
  85. local idols = game.Workspace.Misc.Idols:GetChildren()
  86. local lp = game.Players.LocalPlayer.Character
  87.  
  88. for i = 1,#idols do
  89. if #idols>0 then
  90. lp:MoveTo(idols[i].Position)
  91. wait(2)
  92. end
  93. end
  94.  
  95. if #idols == 0 then
  96. print('No idols were found.')
  97. end
  98. end)
  99. print("Made by Lau & Nijae")
  100. warn("Lau : Gui/TP Click")
  101. warn("Nijae : TP Idols")
Add Comment
Please, Sign In to add comment