Sakkzz

Player

Nov 11th, 2019
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.03 KB | None | 0 0
  1. local service = setmetatable({}, {__index = function(t, k) return game:GetService(k) end })
  2.  
  3. local PlayerScreen = Instance.new("ScreenGui")
  4. local PlayerFrame = Instance.new("Frame")
  5. local WalkspeedLabel = Instance.new("TextLabel")
  6. local JumpPowerLabel = Instance.new("TextLabel")
  7. local WalkSpeed = Instance.new("TextBox")
  8. local JumpPower = Instance.new("TextBox")
  9. local Paint = Instance.new("TextButton")
  10. local Noclip = Instance.new("TextButton")
  11. local TpTool = Instance.new("TextButton")
  12. local Blueprints = Instance.new("TextButton")
  13. local DeleteTool = Instance.new("TextButton")
  14. local Blacklist = Instance.new("TextButton")
  15.  
  16. --Properties:
  17.  
  18. PlayerScreen.Name = "PlayerScreen"
  19. PlayerScreen.Parent = game.CoreGui.LT2.MainFrame.ButtonFrame.PlayerMods
  20.  
  21. PlayerFrame.Name = "PlayerFrame"
  22. PlayerFrame.Parent = PlayerScreen
  23. PlayerFrame.BackgroundColor3 = Color3.new(0.145098, 0.145098, 0.14902)
  24. PlayerFrame.BorderColor3 = Color3.new(0, 0, 0)
  25. PlayerFrame.BorderSizePixel = 2
  26. PlayerFrame.Position = UDim2.new(0, -85, 0, -260)
  27. PlayerFrame.Size = UDim2.new(0, 335, 0, 255)
  28.  
  29. WalkspeedLabel.Name = "WalkspeedLabel"
  30. WalkspeedLabel.Parent = PlayerFrame
  31. WalkspeedLabel.BackgroundColor3 = Color3.new(0.054902, 0.054902, 0.0588235)
  32. WalkspeedLabel.BorderColor3 = Color3.new(0, 0, 0)
  33. WalkspeedLabel.BorderSizePixel = 2
  34. WalkspeedLabel.Size = UDim2.new(0, 125, 0, 20)
  35. WalkspeedLabel.Font = Enum.Font.Gotham
  36. WalkspeedLabel.Text = "Walk Speed:"
  37. WalkspeedLabel.TextColor3 = Color3.new(1, 1, 1)
  38. WalkspeedLabel.TextSize = 14
  39.  
  40. JumpPowerLabel.Name = "JumpPowerLabel"
  41. JumpPowerLabel.Parent = PlayerFrame
  42. JumpPowerLabel.BackgroundColor3 = Color3.new(0.054902, 0.054902, 0.0588235)
  43. JumpPowerLabel.BorderColor3 = Color3.new(0, 0, 0)
  44. JumpPowerLabel.BorderSizePixel = 2
  45. JumpPowerLabel.Position = UDim2.new(0, 170, 0, 0)
  46. JumpPowerLabel.Size = UDim2.new(0, 120, 0, 20)
  47. JumpPowerLabel.Font = Enum.Font.Gotham
  48. JumpPowerLabel.Text = "Jump Power:"
  49. JumpPowerLabel.TextColor3 = Color3.new(1, 1, 1)
  50. JumpPowerLabel.TextSize = 14
  51.  
  52. WalkSpeed.Name = "WalkSpeed"
  53. WalkSpeed.Parent = PlayerFrame
  54. WalkSpeed.BackgroundColor3 = Color3.new(0.6, 0.6, 0.6)
  55. WalkSpeed.BorderColor3 = Color3.new(0, 0, 0)
  56. WalkSpeed.BorderSizePixel = 2
  57. WalkSpeed.Position = UDim2.new(0, 125, 0, 0)
  58. WalkSpeed.Size = UDim2.new(0, 45, 0, 20)
  59. WalkSpeed.Font = Enum.Font.Code
  60. WalkSpeed.Text = "16"
  61. WalkSpeed.TextColor3 = Color3.new(0, 0, 0)
  62. WalkSpeed.TextSize = 16
  63.  
  64. JumpPower.Name = "JumpPower"
  65. JumpPower.Parent = PlayerFrame
  66. JumpPower.BackgroundColor3 = Color3.new(0.6, 0.6, 0.6)
  67. JumpPower.BorderColor3 = Color3.new(0, 0, 0)
  68. JumpPower.BorderSizePixel = 2
  69. JumpPower.Position = UDim2.new(0, 290, 0, 0)
  70. JumpPower.Size = UDim2.new(0, 45, 0, 20)
  71. JumpPower.Font = Enum.Font.Code
  72. JumpPower.Text = "50"
  73. JumpPower.TextColor3 = Color3.new(0, 0, 0)
  74. JumpPower.TextSize = 16
  75.  
  76. Paint.Name = "Paint"
  77. Paint.Parent = PlayerFrame
  78. Paint.BackgroundColor3 = Color3.new(0.054902, 0.054902, 0.0588235)
  79. Paint.BorderColor3 = Color3.new(0, 0, 0)
  80. Paint.BorderSizePixel = 2
  81. Paint.Position = UDim2.new(0, 65, 0, 105)
  82. Paint.Size = UDim2.new(0, 200, 0, 25)
  83. Paint.Font = Enum.Font.Gotham
  84. Paint.Text = "Structure Paint Tool"
  85. Paint.TextColor3 = Color3.new(1, 1, 1)
  86. Paint.TextSize = 14
  87.  
  88. Noclip.Name = "Noclip"
  89. Noclip.Parent = PlayerFrame
  90. Noclip.BackgroundColor3 = Color3.new(0.054902, 0.054902, 0.0588235)
  91. Noclip.BorderColor3 = Color3.new(0, 0, 0)
  92. Noclip.BorderSizePixel = 2
  93. Noclip.Position = UDim2.new(0, 30, 0, 215)
  94. Noclip.Size = UDim2.new(0, 275, 0, 25)
  95. Noclip.Font = Enum.Font.Gotham
  96. Noclip.Text = "Noclip Disabled"
  97. Noclip.TextColor3 = Color3.new(1, 0, 0)
  98. Noclip.TextSize = 14
  99.  
  100. TpTool.Name = "TpTool"
  101. TpTool.Parent = PlayerFrame
  102. TpTool.BackgroundColor3 = Color3.new(0.054902, 0.054902, 0.0588235)
  103. TpTool.BorderColor3 = Color3.new(0, 0, 0)
  104. TpTool.BorderSizePixel = 2
  105. TpTool.Position = UDim2.new(0, 65, 0, 140)
  106. TpTool.Size = UDim2.new(0, 200, 0, 25)
  107. TpTool.Font = Enum.Font.Gotham
  108. TpTool.Text = "Teleport Tool"
  109. TpTool.TextColor3 = Color3.new(1, 1, 1)
  110. TpTool.TextSize = 14
  111.  
  112. Blueprints.Name = "Blueprints"
  113. Blueprints.Parent = PlayerFrame
  114. Blueprints.BackgroundColor3 = Color3.new(0.054902, 0.054902, 0.0588235)
  115. Blueprints.BorderColor3 = Color3.new(0, 0, 0)
  116. Blueprints.BorderSizePixel = 2
  117. Blueprints.Position = UDim2.new(0, 65, 0, 70)
  118. Blueprints.Size = UDim2.new(0, 200, 0, 25)
  119. Blueprints.Font = Enum.Font.Gotham
  120. Blueprints.Text = "Get All Blueprints"
  121. Blueprints.TextColor3 = Color3.new(1, 1, 1)
  122. Blueprints.TextSize = 14
  123.  
  124. DeleteTool.Name = "DeleteTool"
  125. DeleteTool.Parent = PlayerFrame
  126. DeleteTool.BackgroundColor3 = Color3.new(0.054902, 0.054902, 0.0588235)
  127. DeleteTool.BorderColor3 = Color3.new(0, 0, 0)
  128. DeleteTool.BorderSizePixel = 2
  129. DeleteTool.Position = UDim2.new(0, 65, 0, 175)
  130. DeleteTool.Size = UDim2.new(0, 200, 0, 25)
  131. DeleteTool.Font = Enum.Font.Gotham
  132. DeleteTool.Text = "Structure Remove Tool"
  133. DeleteTool.TextColor3 = Color3.new(1, 1, 1)
  134. DeleteTool.TextSize = 14
  135.  
  136. Blacklist.Name = "Blacklist"
  137. Blacklist.Parent = PlayerFrame
  138. Blacklist.BackgroundColor3 = Color3.new(0.054902, 0.054902, 0.0588235)
  139. Blacklist.BorderColor3 = Color3.new(0, 0, 0)
  140. Blacklist.BorderSizePixel = 2
  141. Blacklist.Position = UDim2.new(0, 65, 0, 35)
  142. Blacklist.Size = UDim2.new(0, 200, 0, 25)
  143. Blacklist.Font = Enum.Font.Gotham
  144. Blacklist.Text = "Anti-Blacklist"
  145. Blacklist.TextColor3 = Color3.new(1, 1, 1)
  146. Blacklist.TextSize = 14
  147.  
  148. function Create(cls,props)
  149. local inst = Instance.new(cls)
  150. for i,v in pairs(props) do
  151. inst[i] = v
  152. end
  153. return inst
  154. end
  155. local MoneyCooldown = false
  156. local CurrentSlot = game.Players.LocalPlayer:WaitForChild("CurrentSaveSlot").Value
  157. local ScriptLoadOrSave = false
  158. local CurrentlySavingOrLoading = game.Players.LocalPlayer:WaitForChild("CurrentlySavingOrLoading")
  159. local TreeLogs={}
  160. local WoodPlanks={}
  161. local Render = service.RunService.RenderStepped
  162. local UserInputService = game:GetService("UserInputService")
  163. local shiftKeyL = Enum.KeyCode.LeftShift
  164. local Replicated = service.ReplicatedStorage
  165. local Client = Replicated.Interaction.ClientSetListPlayer
  166. local Dragging = Replicated.Interaction.ClientIsDragging
  167. local Properties = service.Workspace.Properties
  168. local Players = service.Players
  169. local PlayerModels = service.Workspace.PlayerModels
  170. local Player = Players.LocalPlayer
  171. local Char = Player.Character
  172. local Hum = Char.Humanoid
  173. local Root = Char.HumanoidRootPart
  174. local Mouse = Player:GetMouse()
  175. local Noclipper = false
  176. local Open = true
  177. local throwAxe = false
  178. local misc = false
  179. local player = false
  180. local slot = false
  181. local box = false
  182. local log = false
  183. local plank = false
  184. local players = false
  185. local wp = false
  186. local other = false
  187.  
  188. Blacklist.MouseButton1Click:Connect(function()
  189. local cframe
  190. for i,v in next, workspace:GetDescendants() do
  191. if v:IsA("SpawnLocation") then
  192. v.Touched:Connect(function(h)
  193. if h.Parent == Char and cframe then
  194. Char:SetPrimaryPartCFrame(cframe)
  195. end
  196. end)
  197. end
  198. end
  199.  
  200. game:GetService("RunService"):BindToRenderStep("NO HACKS",Enum.RenderPriority.Last.Value,function()
  201. if Char.PrimaryPart then
  202. cframe = Char.PrimaryPart.CFrame
  203. end
  204. end)
  205.  
  206. for i,v in next, debug.getregistry() do
  207. if type(v)=='function' and debug.getupvalues(v).lastUpdate then
  208. debug.setupvalue(v,"lastUpdate",math.huge)
  209. break
  210. end
  211. end
  212.  
  213. for i,v in next, workspace.Effects:GetChildren() do
  214. if v:IsA("BasePart") and v.Name == "BlacklistWall" then
  215. v:Destroy()
  216. end
  217. end
  218. end)
  219.  
  220. DeleteTool.MouseButton1Click:Connect(function()
  221. local TP = Instance.new("Tool", Player.Backpack)
  222. TP.RequiresHandle = false
  223. TP.RobloxLocked = true
  224. TP.Name = "Tool"
  225. TP.TextureId = "rbxassetid://4343288538"
  226. TP.ToolTip = "Delete Tool"
  227. TP.Equipped:connect(function(Mouse)
  228. Mouse.Button1Down:connect(function()
  229. del = Mouse.Target
  230. if del == nil then
  231. else
  232. delete = del.Parent
  233. RemoveItem(delete)
  234. end
  235. end)
  236. end)
  237. end)
  238.  
  239. function RemoveItem(SelectedPart)
  240. if SelectedPart:FindFirstChild("Owner") and SelectedPart.Owner.Value ~= nil and SelectedPart:FindFirstChild("ItemName") and SelectedPart:FindFirstChild("Type") and (SelectedPart.PrimaryPart ~= nil or SelectedPart:FindFirstChild("MainCFrame")) then
  241. Replicated.Interaction.DestroyStructure:FireServer(SelectedPart)
  242. end
  243. end
  244.  
  245. function getBlueprints()
  246. local owned = Player.PlayerBlueprints.Blueprints
  247. for i,v in pairs(Replicated.Purchasables.Structures.BlueprintStructures:GetChildren()) do
  248. if not owned:FindFirstChild(v.Name) then
  249. local blueprint = Instance.new("Folder",owned)
  250. blueprint.Name = v.Name
  251. local category = v.ItemCategory:Clone()
  252. category.Parent = blueprint
  253. end
  254. end
  255. end
  256.  
  257. Blueprints.MouseButton1Click:Connect(function()
  258. getBlueprints()
  259. end)
  260.  
  261. game:GetService("RunService").Stepped:connect(function()
  262. if Noclipper then
  263. Hum:ChangeState(11)
  264. end
  265. end)
  266.  
  267. Noclip.MouseButton1Click:connect(function()
  268. if Noclipper == true then
  269. Noclipper = false
  270. Noclip.TextColor3 = Color3.new(1, 0, 0)
  271. Noclip.Text = "NOCLIP DISABLED"
  272. elseif Noclipper == false then
  273. Noclipper = true
  274. Noclip.TextColor3 = Color3.new(0, 0.666667, 0)
  275. Noclip.Text = "NOCLIP ENABLED"
  276. end
  277. end)
  278.  
  279. local Walk = 16
  280. local Jump = 50
  281.  
  282. function config()
  283. Hum.Name = "1"
  284. local l = Char["1"]:Clone()
  285. l.Parent = Char
  286. l.Name = "Humanoid"
  287. wait(0.1)
  288. Char["1"]:Destroy()
  289. service.Workspace.CurrentCamera.CameraSubject = Char
  290. Char.Animate.Disabled = true
  291. l.Changed:Connect(function()
  292. if l then
  293. l.WalkSpeed = Walk
  294. l.JumpPower = Jump
  295. end
  296. end)
  297. end
  298.  
  299. WalkSpeed.Changed:Connect(function()
  300. Walk=tonumber(WalkSpeed.Text)
  301. end)
  302.  
  303. JumpPower.Changed:Connect(function()
  304. Jump=tonumber(JumpPower.Text)
  305. end)
  306.  
  307. Hum.Changed:Connect(function()
  308. if Hum then
  309. Hum.WalkSpeed=Walk
  310. Hum.JumpPower=Jump
  311. end
  312. end)
  313.  
  314. local function IsShiftKeyDown()
  315. return UserInputService:IsKeyDown(shiftKeyL)
  316. end
  317.  
  318. local function Input(input, gameProcessedEvent)
  319. if not IsShiftKeyDown() then
  320. Walk=tonumber(16)
  321. else
  322. Walk=tonumber(35)
  323. end
  324. end
  325.  
  326. UserInputService.InputBegan:Connect(Input)
  327.  
  328.  
  329. Paint.MouseButton1Click:Connect(function()
  330. loadstring(game:HttpGet("https://pastebin.com/raw/9c4JR3ui", true))()
  331. end)
Add Comment
Please, Sign In to add comment