Advertisement
Guest User

esdfsefdfse

a guest
Apr 22nd, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.03 KB | None | 0 0
  1. -- Variables:
  2. local char = game.Players.LocalPlayer.Character.HumanoidRootPart
  3. local pz = ""
  4. local px = ""
  5. local py = ""
  6. -- Instances:
  7. local eclipsisgui = Instance.new("ScreenGui")
  8. local Mainframe = Instance.new("Frame")
  9. local Dragbar = Instance.new("Frame")
  10. local TextButton = Instance.new("TextButton")
  11. local cb = Instance.new("TextButton")
  12. local ps = Instance.new("TextButton")
  13. local gun = Instance.new("TextButton")
  14. local tp = Instance.new("TextButton")
  15. local TextLabel = Instance.new("TextLabel")
  16. --Properties:
  17. eclipsisgui.Name = "eclipsisgui"
  18. eclipsisgui.Parent = game.CoreGui
  19. eclipsisgui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20.  
  21. Mainframe.Name = "Mainframe"
  22. Mainframe.Parent = eclipsisgui
  23. Mainframe.BackgroundColor3 = Color3.new(0.498039, 0.498039, 0.498039)
  24. Mainframe.BorderSizePixel = 0
  25. Mainframe.Position = UDim2.new(0.395297557, 0, 0.227692306, 0)
  26. Mainframe.Size = UDim2.new(0, 285, 0, 354)
  27. Mainframe.Active = true
  28. Mainframe.Draggable = true
  29.  
  30. Dragbar.Name = "Dragbar"
  31. Dragbar.Parent = Mainframe
  32. Dragbar.BackgroundColor3 = Color3.new(1, 1, 1)
  33. Dragbar.BorderSizePixel = 0
  34. Dragbar.Size = UDim2.new(0, 285, 0, 7)
  35.  
  36. TextButton.Parent = Mainframe
  37. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  38. TextButton.BorderSizePixel = 0
  39. TextButton.Position = UDim2.new(0, 0, 0.0648464188, 0)
  40. TextButton.Size = UDim2.new(0, 285, 0, 50)
  41. TextButton.Font = Enum.Font.SourceSans
  42. TextButton.Text = "Create Block"
  43. TextButton.TextColor3 = Color3.new(0, 0, 0)
  44. TextButton.TextSize = 25
  45.  
  46. cb.Name = "cb"
  47. cb.Parent = Mainframe
  48. cb.BackgroundColor3 = Color3.new(1, 1, 1)
  49. cb.BorderSizePixel = 0
  50. cb.Position = UDim2.new(0, 0, 0.226191163, 0)
  51. cb.Size = UDim2.new(0, 285, 0, 50)
  52. cb.Font = Enum.Font.SourceSans
  53. cb.Text = "Delete Blocks"
  54. cb.TextColor3 = Color3.new(0, 0, 0)
  55. cb.TextSize = 25
  56.  
  57. ps.Name = "ps"
  58. ps.Parent = Mainframe
  59. ps.BackgroundColor3 = Color3.new(1, 1, 1)
  60. ps.BorderSizePixel = 0
  61. ps.Position = UDim2.new(0, 0, 0.393301308, 0)
  62. ps.Size = UDim2.new(0, 285, 0, 50)
  63. ps.Font = Enum.Font.SourceSans
  64. ps.Text = "Portafab Speed"
  65. ps.TextColor3 = Color3.new(0, 0, 0)
  66. ps.TextSize = 25
  67.  
  68. gun.Name = "gun"
  69. gun.Parent = Mainframe
  70. gun.BackgroundColor3 = Color3.new(1, 1, 1)
  71. gun.BorderSizePixel = 0
  72. gun.Position = UDim2.new(0, 0, 0.56547308, 0)
  73. gun.Size = UDim2.new(0, 285, 0, 50)
  74. gun.Font = Enum.Font.SourceSans
  75. gun.Text = "Gunmod"
  76. gun.TextColor3 = Color3.new(0, 0, 0)
  77. gun.TextSize = 25
  78.  
  79. tp.Name = "tp"
  80. tp.Parent = Mainframe
  81. tp.BackgroundColor3 = Color3.new(1, 1, 1)
  82. tp.BorderSizePixel = 0
  83. tp.Position = UDim2.new(0, 0, 0.737789452, 0)
  84. tp.Size = UDim2.new(0, 285, 0, 50)
  85. tp.Font = Enum.Font.SourceSans
  86. tp.Text = "Ctrl + Click TP"
  87. tp.TextColor3 = Color3.new(0, 0, 0)
  88. tp.TextSize = 25
  89.  
  90. TextLabel.Parent = Mainframe
  91. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  92. TextLabel.BackgroundTransparency = 1
  93. TextLabel.BorderSizePixel = 0
  94. TextLabel.Position = UDim2.new(0, 0, 0.878531098, 0)
  95. TextLabel.Size = UDim2.new(0, 285, 0, 50)
  96. TextLabel.Font = Enum.Font.SourceSans
  97. TextLabel.Text = "Made by a guy with 0 social life"
  98. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  99. TextLabel.TextSize = 25
  100. -- Scripts:
  101. TextButton.MouseButton1Down:connect(function()
  102. pz = char.Position.Z
  103. px = char.Position.X
  104. py = char.Position.Y
  105. workspace.Terrain:FillBlock(CFrame.new(px,py,pz),Vector3.new(3,3,3),Enum.Material.Ice)
  106. end)
  107. cb.MouseButton1Down:connect(function()
  108. for ___, v in pairs(game.Workspace) do
  109. if v~= nil and v.Name == "Terrain" then
  110. v.Destroy()
  111. end
  112. end
  113. end)
  114. ps.MouseButton1Down:connect(function()
  115. local renderstepped = game:GetService("RunService").RenderStepped
  116. local uis = game:GetService("UserInputService")
  117. local plr = game.Players.LocalPlayer
  118. local conn
  119.  
  120. local function hack()
  121. local char = plr.Character
  122. local portafab = plr.Backpack:FindFirstChild("Portafab") or plr.Character:FindFirstChild("Portafab")
  123. local remote = portafab:WaitForChild("Remote")
  124. if conn then conn:Disconnect() end
  125. conn = uis.InputBegan:Connect(function(i,g)
  126. if portafab.Parent == char then
  127. if i.KeyCode == Enum.KeyCode.E or i.UserInputType == Enum.UserInputType.MouseButton1 then
  128. while uis:IsKeyDown(Enum.KeyCode.E) or uis:IsMouseButtonPressed(Enum.UserInputType.MouseButton1) do
  129. if portafab.Parent ~= char then break end
  130. remote:FireServer("Activated", plr:GetMouse().Hit.p, plr:GetMouse().Target)
  131. renderstepped:Wait()
  132. end
  133. elseif i.KeyCode == Enum.KeyCode.G then
  134. while uis:IsKeyDown(Enum.KeyCode.G) and portafab.Parent == char do
  135. remote:FireServer("DestroyActivated",plr:GetMouse().Hit.p,plr:GetMouse().Target)
  136. renderstepped:Wait()
  137. end
  138. remote:FireServer("DestroyDeactivated")
  139. end
  140. end
  141. end)
  142. end
  143.  
  144. hack()
  145.  
  146. plr.CharacterAdded:connect(function(char)
  147. hack()
  148. end)
  149. end)
  150. gun.MouseButton1Down:connect(function()
  151. local cs = game:GetService("CollectionService")
  152. local rs = game:GetService("RunService").RenderStepped
  153. local plr = game.Players.LocalPlayer
  154.  
  155. local function hack(c)
  156. if c:IsA("Tool") and c.Name ~= "Portafab" and not cs:HasTag(c,"hack") then
  157. while not cs:HasTag(c,"hack") and rs:Wait() do
  158. for i,v in next, debug.getregistry() do
  159. if type(v)=='function' and debug.getupvalues(v).self and debug.getupvalues(v).self.Tool and debug.getupvalues(v).self.Tool.Name == c.Name then
  160. local self = debug.getupvalues(v).self
  161. self.PrimaryFireRate = 2^31
  162. self.PrimaryAutomatic = true
  163. self.PrimaryIridiumCost = 0
  164. cs:AddTag(c,"hack")
  165. break
  166. end
  167. end
  168. end
  169. end
  170. end
  171. plr.Backpack.ChildAdded:Connect(hack)
  172.  
  173. plr.CharacterAdded:Connect(function() plr.Backpack.ChildAdded:Connect(hack) end)
  174. end)
  175. tp.MouseButton1Down:connect(function()
  176. local UIS = game:GetService("UserInputService")
  177.  
  178. local Player = game.Players.LocalPlayer
  179. local Mouse = Player:GetMouse()
  180.  
  181.  
  182. function GetCharacter()
  183. return game.Players.LocalPlayer.Character
  184. end
  185.  
  186. function Teleport(pos)
  187. local Char = GetCharacter()
  188. if Char then
  189. Char:MoveTo(pos)
  190. end
  191. end
  192.  
  193.  
  194. UIS.InputBegan:Connect(function(input)
  195. if input.UserInputType == Enum.UserInputType.MouseButton1 and UIS:IsKeyDown(Enum.KeyCode.LeftControl) then
  196. Teleport(Mouse.Hit.p)
  197. end
  198. end)
  199. end)
  200. print("loaded probably")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement