RealDOGGODEVELOPER

213213213213

Nov 15th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.12 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/eWKgbdix", true))()
  2. local w = library:CreateWindow('Example')
  3. w:Section('Player Setting')
  4. local box = w:Box('WalkSpeed', {
  5. flag = "ws";
  6. type = 'number';
  7. }, function(new, old, enter)
  8. print(new, old, enter)
  9. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = tonumber(new)
  10. end)
  11.  
  12. w:Section('Combat Settings')
  13.  
  14. local b = w:Button("Silent aim", function()
  15. function getplrsname()
  16. for i,v in pairs(game:GetChildren()) do
  17. if v.ClassName == "Players" then
  18. return v.Name
  19. end
  20. end
  21. end
  22. local players = getplrsname()
  23. local plr = game[players].LocalPlayer
  24. coroutine.resume(coroutine.create(function()
  25. while wait(1) do
  26. coroutine.resume(coroutine.create(function()
  27. for _,v in pairs(game[players]:GetPlayers()) do
  28. if v.Name ~= plr.Name and v.Character then
  29. v.Character.HumanoidRootPart.CanCollide = false
  30. v.Character.HumanoidRootPart.Transparency = 10
  31. v.Character.HumanoidRootPart.Size = Vector3.new(12,12,12)
  32. end
  33. end
  34. end))
  35. end
  36. end))
  37. end)
  38. w:Section('Misc')
  39.  
  40. local b = w:Button("Inf Health", function()
  41. game.ReplicatedStorage.GameFunctions.StatChange:FireServer("Health", 10000)
  42. end)
  43.  
  44. local b = w:Button("Inf Energy", function()
  45. game.ReplicatedStorage.GameFunctions.StatChange:FireServer("Energy", 10000)
  46. end)
  47.  
  48. local b = w:Button("Esp", function()
  49. local Holder = Instance.new("Folder", game.CoreGui)
  50. Holder.Name = "ESP"
  51.  
  52. local Box = Instance.new("BoxHandleAdornment")
  53. Box.Name = "nilBox"
  54. Box.Size = Vector3.new(4, 7, 4)
  55. Box.Color3 = Color3.new(100 / 255, 100 / 255, 100 / 255)
  56. Box.Transparency = 0.7
  57. Box.ZIndex = 0
  58. Box.AlwaysOnTop = true
  59. Box.Visible = true
  60.  
  61. local NameTag = Instance.new("BillboardGui")
  62. NameTag.Name = "nilNameTag"
  63. NameTag.Enabled = false
  64. NameTag.Size = UDim2.new(0, 200, 0, 50)
  65. NameTag.AlwaysOnTop = true
  66. NameTag.StudsOffset = Vector3.new(0, 1.8, 0)
  67. local Tag = Instance.new("TextLabel", NameTag)
  68. Tag.Name = "Tag"
  69. Tag.BackgroundTransparency = 1
  70. Tag.Position = UDim2.new(0, -50, 0, 0)
  71. Tag.Size = UDim2.new(0, 300, 0, 20)
  72. Tag.TextSize = 20
  73. Tag.TextColor3 = Color3.new(100 / 255, 100 / 255, 100 / 255)
  74. Tag.TextStrokeColor3 = Color3.new(0 / 255, 0 / 255, 0 / 255)
  75. Tag.TextStrokeTransparency = 0.4
  76. Tag.Text = "nil"
  77. Tag.Font = Enum.Font.SourceSansBold
  78. Tag.TextScaled = false
  79.  
  80. local LoadCharacter = function(v)
  81. repeat wait() until v.Character ~= nil
  82. v.Character:WaitForChild("Humanoid")
  83. local vHolder = Holder:FindFirstChild(v.Name)
  84. vHolder:ClearAllChildren()
  85. local b = Box:Clone()
  86. b.Name = v.Name .. "Box"
  87. b.Adornee = v.Character
  88. b.Parent = vHolder
  89. local t = NameTag:Clone()
  90. t.Name = v.Name .. "NameTag"
  91. t.Enabled = true
  92. t.Parent = vHolder
  93. t.Adornee = v.Character:WaitForChild("Head", 5)
  94. if not t.Adornee then
  95. return UnloadCharacter(v)
  96. end
  97. t.Tag.Text = v.Name
  98. b.Color3 = Color3.new(v.TeamColor.r, v.TeamColor.g, v.TeamColor.b)
  99. t.Tag.TextColor3 = Color3.new(v.TeamColor.r, v.TeamColor.g, v.TeamColor.b)
  100. local Update
  101. local UpdateNameTag = function()
  102. if not pcall(function()
  103. v.Character.Humanoid.DisplayDistanceType = Enum.HumanoidDisplayDistanceType.None
  104. local maxh = math.floor(v.Character.Humanoid.MaxHealth)
  105. local h = math.floor(v.Character.Humanoid.Health)
  106. t.Tag.Text = v.Name .. "\n" .. ((maxh ~= 0 and tostring(math.floor((h / maxh) * 100))) or "0") .. "% " .. tostring(h) .. "/" .. tostring(maxh)
  107. end) then
  108. Update:Disconnect()
  109. end
  110. end
  111. UpdateNameTag()
  112. Update = v.Character.Humanoid.Changed:Connect(UpdateNameTag)
  113. end
  114.  
  115. local UnloadCharacter = function(v)
  116. local vHolder = Holder:FindFirstChild(v.Name)
  117. if vHolder and (vHolder:FindFirstChild(v.Name .. "Box") ~= nil or vHolder:FindFirstChild(v.Name .. "NameTag") ~= nil) then
  118. vHolder:ClearAllChildren()
  119. end
  120. end
  121.  
  122. local LoadPlayer = function(v)
  123. local vHolder = Instance.new("Folder", Holder)
  124. vHolder.Name = v.Name
  125. v.CharacterAdded:Connect(function()
  126. pcall(LoadCharacter, v)
  127. end)
  128. v.CharacterRemoving:Connect(function()
  129. pcall(UnloadCharacter, v)
  130. end)
  131. v.Changed:Connect(function(prop)
  132. if prop == "TeamColor" then
  133. UnloadCharacter(v)
  134. wait()
  135. LoadCharacter(v)
  136. end
  137. end)
  138. LoadCharacter(v)
  139. end
  140.  
  141. local UnloadPlayer = function(v)
  142. UnloadCharacter(v)
  143. local vHolder = Holder:FindFirstChild(v.Name)
  144. if vHolder then
  145. vHolder:Destroy()
  146. end
  147. end
  148.  
  149. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  150. spawn(function() pcall(LoadPlayer, v) end)
  151. end
  152.  
  153. game:GetService("Players").PlayerAdded:Connect(function(v)
  154. pcall(LoadPlayer, v)
  155. end)
  156.  
  157. game:GetService("Players").PlayerRemoving:Connect(function(v)
  158. pcall(UnloadPlayer, v)
  159. end)
  160.  
  161. game:GetService("Players").LocalPlayer.NameDisplayDistance = 0
  162. end)
  163.  
  164. local w = library:CreateWindow('More Settings')
  165. w:Section('Farming')
  166. local b = w:Button("Coin Farm", function()
  167. _G.CoinFarm = true
  168. while _G.CoinFarm == true do
  169. wait ()
  170. game.Workspace.Lobby.LobbyObby.Token.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  171. game.Workspace.Lobby.LobbyObby.Token.CanCollide = false
  172. game.Workspace.Lobby.LobbyObby.Token.Transparency = 1
  173. game.Workspace.LavaObby.Token.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  174. game.Workspace.LavaObby.Token.CanCollide = false
  175. game.Workspace.LavaObby.Token.Transparency = 1
  176. game.ReplicatedStorage.GameFunctions.Taunt:FireServer()
  177. end
  178. end)
  179.  
  180. local b = w:Button("Coin Farm OFF", function()
  181. _G.CoinFarm = false
  182. wait (0.3)
  183. _G.CoinFarm = false
  184. wait (0.3)
  185. _G.CoinFarm = false
  186. wait (0.3)
  187. end)
  188.  
  189. w:Section('FunStuff')
  190.  
  191.  
  192. local b = w:Button("Unlock Gamepasses", function()
  193. local g = game.Players.LocalPlayer.Information.Gamepasses
  194. g.FaceChanger.Value = false
  195. g.Vanish.Value = false
  196. g.Cloner.Value = false
  197. g.InstantHide.Value = false
  198. g.Radar.Value = false
  199. g.Walkspeed.Value = false
  200. g.AutoSeeker.Value = false
  201. g.SeekerPoints.Value = false
  202. wait ()
  203. g.FaceChanger.Value = true
  204. g.Vanish.Value = true
  205. g.Cloner.Value = true
  206. g.InstantHide.Value = true
  207. g.Radar.Value = true
  208. g.Walkspeed.Value = true
  209. g.AutoSeeker.Value = true
  210. g.SeekerPoints.Value = true
  211. end)
  212.  
  213.  
  214. local b = w:Button("Delete Lobby", function()
  215. local tbl_main =
  216. {
  217. game:GetService("Workspace").Lobby
  218. }
  219. game:GetService("ReplicatedStorage").GameFunctions.ChangeObject:InvokeServer(unpack(tbl_main))
  220. game.Players.LocalPlayer.Character:Remove()
  221. end)
  222.  
  223. local w = library:CreateWindow('teleports')
  224. w:Section('List')
  225.  
  226. local b = w:Button("BloxShop", function()
  227. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-171.46756, 36.1999474, 17.4766827)
  228. end)
  229.  
  230. local b = w:Button("Lobby", function()
  231. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-4.4916172, 41.399971, 16.4080391)
  232. end)
  233.  
  234.  
  235. local b = w:Button("Old Spawn", function()
  236. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-166.181961, 4.60007715, -67.3096848)
  237. end)
  238.  
  239.  
  240. local b = w:Button("Pakour Token", function()
  241. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-86.3323669, 61.4000931, 144.601578)
  242. end)
  243.  
  244.  
  245. local b = w:Button("Cave under spawn", function()
  246. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-4.19754934, 9.00008202, 8.88850594)
  247. end)
  248.  
  249.  
  250. local b = w:Button("Gamepasses", function()
  251. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-128.864151, 34.2001686, -26.4871292)
  252. end)
Advertisement
Add Comment
Please, Sign In to add comment