Advertisement
Caigepayne

Untitled

Dec 23rd, 2020
4,430
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.64 KB | None | 0 0
  1. local WildWestX = Instance.new("ScreenGui")
  2. local playersLocation = game.Workspace.WORKSPACE_Entities.Players
  3. local WWX = Instance.new("ImageLabel")
  4. local Xploits = Instance.new("Frame")
  5. local AnimalESP = Instance.new("TextLabel")
  6. local Button = Instance.new("TextButton")
  7. local Active = Instance.new("Frame")
  8. local UIListLayout = Instance.new("UIListLayout")
  9. local WeaponMods = Instance.new("TextLabel")
  10. local Button_2 = Instance.new("TextButton")
  11. local Active_2 = Instance.new("Frame")
  12. local NightVision = Instance.new("TextLabel")
  13. local Button_3 = Instance.new("TextButton")
  14. local Active_3 = Instance.new("Frame")
  15. local AutoFarm = Instance.new("TextLabel")
  16. local Button_4 = Instance.new("TextButton")
  17. local Active_4 = Instance.new("Frame")
  18. local playerESP = Instance.new("TextLabel")
  19. local Button_5 = Instance.new("TextButton")
  20. local Active_5 = Instance.new("Frame")
  21. local nightDebounce = false
  22. --Properties:
  23.  
  24. WildWestX.Name = "WildWestX"
  25. WildWestX.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  26. WildWestX.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  27.  
  28. WWX.Name = "WWX"
  29. WWX.Parent = WildWestX
  30. WWX.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  31. WWX.BackgroundTransparency = 1.000
  32. WWX.Position = UDim2.new(0.799543619, 0, 0, 0)
  33. WWX.Size = UDim2.new(0.200180739, 0, 0.133453831, 0)
  34. WWX.Image = "rbxassetid://5850589778"
  35.  
  36.  
  37. Xploits.Name = "Xploits"
  38. Xploits.Parent = WWX
  39. Xploits.BackgroundColor3 = Color3.fromRGB(76, 55, 25)
  40. Xploits.BackgroundTransparency = 0.400
  41. Xploits.BorderSizePixel = 0
  42. Xploits.Position = UDim2.new(0.125, 0, 0.99000001, 0)
  43. Xploits.Size = UDim2.new(0.699999988, 0, 2, 0)
  44.  
  45. AnimalESP.Name = "AnimalESP"
  46. AnimalESP.Parent = Xploits
  47. AnimalESP.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  48. AnimalESP.BackgroundTransparency = 1.000
  49. AnimalESP.Position = UDim2.new(0, 0, 0.0500000007, 0)
  50. AnimalESP.Size = UDim2.new(0.649999976, 0, 0.150000006, 0)
  51. AnimalESP.Font = Enum.Font.DenkOne
  52. AnimalESP.Text = "Animal ESP"
  53. AnimalESP.TextColor3 = Color3.fromRGB(0, 0, 0)
  54. AnimalESP.TextScaled = true
  55. AnimalESP.TextSize = 14.000
  56. AnimalESP.TextWrapped = true
  57.  
  58. Button.Name = "Button"
  59. Button.Parent = AnimalESP
  60. Button.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  61. Button.BackgroundTransparency = 0.750
  62. Button.BorderSizePixel = 0
  63. Button.Position = UDim2.new(1.10000002, 0, 0, 0)
  64. Button.Size = UDim2.new(0.224999994, 0, 1, 0)
  65. Button.Font = Enum.Font.SourceSans
  66. Button.Text = ""
  67. Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  68. Button.TextSize = 14.000
  69.  
  70. Active.Name = "Active"
  71. Active.Parent = Button
  72. Active.BackgroundColor3 = Color3.fromRGB(85, 255, 0)
  73. Active.BorderSizePixel = 0
  74. Active.Position = UDim2.new(0.100000001, 0, 0.100000001, 0)
  75. Active.Size = UDim2.new(0.800000012, 0, 0.800000012, 0)
  76. Active.Visible = false
  77.  
  78. Button.MouseButton1Click:Connect(function()
  79. Active.Visible = true
  80.  
  81. local location = game.Workspace.WORKSPACE_Entities.Animals
  82. local lighting = game.Lighting
  83.  
  84.  
  85. for i,v in pairs(location:GetChildren()) do
  86. if v:isA("Model") then
  87.  
  88. local bg = Instance.new("BillboardGui")
  89. bg.Parent = game.Players.LocalPlayer.PlayerGui
  90. bg.AlwaysOnTop = true
  91. bg.Adornee = v
  92. bg.LightInfluence = 1
  93. bg.Size = UDim2.new(1,0,1,0)
  94. bg.MaxDistance = 100000000000000000000
  95. bg.StudsOffset = Vector3.new(0, 2, 0)
  96.  
  97.  
  98. local text = Instance.new("TextLabel")
  99. text.Size = UDim2.new(10,0,10,0)
  100. text.TextScaled = true
  101. text.Text = v.Name
  102. text.BackgroundTransparency = 1
  103. text.TextColor3 = Color3.new(255,255,255)
  104. text.TextStrokeTransparency = 1
  105.  
  106. text.Parent = bg
  107. end
  108. end
  109.  
  110. location.ChildAdded:Connect(function()
  111. for i,v in pairs(location:GetChildren()) do
  112. if v:isA("Model") then
  113.  
  114. local bg = Instance.new("BillboardGui")
  115. bg.Parent = game.Players.LocalPlayer.PlayerGui
  116. bg.AlwaysOnTop = true
  117. bg.Adornee = v
  118. bg.LightInfluence = 1
  119. bg.Size = UDim2.new(1,0,1,0)
  120. bg.MaxDistance = 100000000000000000000
  121. bg.StudsOffset = Vector3.new(0, 2, 0)
  122.  
  123.  
  124. local text = Instance.new("TextLabel")
  125. text.Size = UDim2.new(10,0,10,0)
  126. text.TextScaled = true
  127. text.Text = v.Name
  128. text.BackgroundTransparency = 1
  129. text.TextColor3 = Color3.new(255,255,255)
  130. text.TextStrokeTransparency = 1
  131.  
  132. text.Parent = bg
  133. end
  134. end
  135. end)
  136.  
  137. game.Players.LocalPlayer.Character.Humanoid.Died:Connect(function()
  138.  
  139.  
  140. spawn(function()
  141. wait(4)
  142. for i,v in pairs(location:GetChildren()) do
  143. if v:isA("Model") then
  144.  
  145. local bg = Instance.new("BillboardGui")
  146. bg.Parent = game.Players.LocalPlayer.PlayerGui
  147. bg.AlwaysOnTop = true
  148. bg.Adornee = v
  149. bg.LightInfluence = 1
  150. bg.Size = UDim2.new(1,0,1,0)
  151. bg.MaxDistance = 100000000000000000000
  152. bg.StudsOffset = Vector3.new(0, 2, 0)
  153.  
  154.  
  155. local text = Instance.new("TextLabel")
  156. text.Size = UDim2.new(10,0,10,0)
  157. text.TextScaled = true
  158. text.Text = v.Name
  159. text.BackgroundTransparency = 1
  160. text.TextColor3 = Color3.new(255,255,255)
  161. text.TextStrokeTransparency = 1
  162.  
  163. text.Parent = bg
  164. end
  165. end
  166. end)
  167. end)
  168.  
  169. end)
  170.  
  171. UIListLayout.Parent = Xploits
  172. UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
  173. UIListLayout.VerticalAlignment = Enum.VerticalAlignment.Center
  174. UIListLayout.Padding = UDim.new(0.0500000007, 0)
  175.  
  176. WeaponMods.Name = "WeaponMods"
  177. WeaponMods.Parent = Xploits
  178. WeaponMods.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  179. WeaponMods.BackgroundTransparency = 1.000
  180. WeaponMods.Position = UDim2.new(0, 0, 0.0500000007, 0)
  181. WeaponMods.Size = UDim2.new(0.649999976, 0, 0.150000006, 0)
  182. WeaponMods.Font = Enum.Font.DenkOne
  183. WeaponMods.Text = "Weapon Mods"
  184. WeaponMods.TextColor3 = Color3.fromRGB(0, 0, 0)
  185. WeaponMods.TextScaled = true
  186. WeaponMods.TextSize = 14.000
  187. WeaponMods.TextWrapped = true
  188.  
  189. Button_2.Name = "Button"
  190. Button_2.Parent = WeaponMods
  191. Button_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  192. Button_2.BackgroundTransparency = 0.750
  193. Button_2.BorderSizePixel = 0
  194. Button_2.Position = UDim2.new(1.10000002, 0, 0, 0)
  195. Button_2.Size = UDim2.new(0.224999994, 0, 1, 0)
  196. Button_2.Font = Enum.Font.SourceSans
  197. Button_2.Text = ""
  198. Button_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  199. Button_2.TextSize = 14.000
  200.  
  201. Active_2.Name = "Active"
  202. Active_2.Parent = Button_2
  203. Active_2.BackgroundColor3 = Color3.fromRGB(85, 255, 0)
  204. Active_2.BorderSizePixel = 0
  205. Active_2.Position = UDim2.new(0.100000001, 0, 0.100000001, 0)
  206. Active_2.Size = UDim2.new(0.800000012, 0, 0.800000012, 0)
  207. Active_2.Visible = false
  208.  
  209. Button_2.MouseButton1Click:Connect(function()
  210. Active_2.Visible = true
  211. for i, v in pairs(getgc(true)) do
  212. if type(v) == "table" and rawget(v, "BaseRecoil") then
  213. v.BaseRecoil = 0.01
  214. v.ProjectileAccuracy = 100
  215. v.ReloadSpeed = 100
  216. v.MaxAmmo = 50
  217. v.LoadSpeed = 100
  218. v.LoadEndSpeed = 100
  219. end
  220. end
  221. end)
  222.  
  223. NightVision.Name = "Night Vision"
  224. NightVision.Parent = Xploits
  225. NightVision.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  226. NightVision.BackgroundTransparency = 1.000
  227. NightVision.Position = UDim2.new(0, 0, 0.0500000007, 0)
  228. NightVision.Size = UDim2.new(0.649999976, 0, 0.150000006, 0)
  229. NightVision.Font = Enum.Font.DenkOne
  230. NightVision.Text = "Night Vision"
  231. NightVision.TextColor3 = Color3.fromRGB(0, 0, 0)
  232. NightVision.TextScaled = true
  233. NightVision.TextSize = 14.000
  234. NightVision.TextWrapped = true
  235.  
  236. Button_3.Name = "Button"
  237. Button_3.Parent = NightVision
  238. Button_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  239. Button_3.BackgroundTransparency = 0.750
  240. Button_3.BorderSizePixel = 0
  241. Button_3.Position = UDim2.new(1.10000002, 0, 0, 0)
  242. Button_3.Size = UDim2.new(0.224999994, 0, 1, 0)
  243. Button_3.Font = Enum.Font.SourceSans
  244. Button_3.Text = ""
  245. Button_3.TextColor3 = Color3.fromRGB(0, 0, 0)
  246. Button_3.TextSize = 14.000
  247.  
  248. Active_3.Name = "Active"
  249. Active_3.Parent = Button_3
  250. Active_3.BackgroundColor3 = Color3.fromRGB(85, 255, 0)
  251. Active_3.BorderSizePixel = 0
  252. Active_3.Position = UDim2.new(0.100000001, 0, 0.100000001, 0)
  253. Active_3.Size = UDim2.new(0.800000012, 0, 0.800000012, 0)
  254. Active_3.Visible = false
  255.  
  256. Button_3.MouseButton1Click:Connect(function()
  257.  
  258.  
  259.  
  260. if nightDebounce == false then
  261. Active_3.Visible = true
  262. game.Lighting.Brightness = 8
  263.  
  264. nightDebounce = true
  265. else
  266. Active_3.Visible = false
  267. game.Lighting.Brightness = 2
  268. nightDebounce = false
  269. end
  270. end)
  271.  
  272. AutoFarm.Name = "AutoFarm"
  273. AutoFarm.Parent = Xploits
  274. AutoFarm.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  275. AutoFarm.BackgroundTransparency = 1.000
  276. AutoFarm.Position = UDim2.new(0, 0, 0.0500000007, 0)
  277. AutoFarm.Size = UDim2.new(0.649999976, 0, 0.150000006, 0)
  278. AutoFarm.Font = Enum.Font.DenkOne
  279. AutoFarm.Text = "AutoFarm"
  280. AutoFarm.TextColor3 = Color3.fromRGB(0, 0, 0)
  281. AutoFarm.TextScaled = true
  282. AutoFarm.TextSize = 14.000
  283. AutoFarm.TextWrapped = true
  284.  
  285. Button_4.Name = "Button"
  286. Button_4.Parent = AutoFarm
  287. Button_4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  288. Button_4.BackgroundTransparency = 0.750
  289. Button_4.BorderSizePixel = 0
  290. Button_4.Position = UDim2.new(1.10000002, 0, 0, 0)
  291. Button_4.Size = UDim2.new(0.224999994, 0, 1, 0)
  292. Button_4.Font = Enum.Font.SourceSans
  293. Button_4.Text = ""
  294. Button_4.TextColor3 = Color3.fromRGB(0, 0, 0)
  295. Button_4.TextSize = 14.000
  296.  
  297. Active_4.Name = "Active"
  298. Active_4.Parent = Button_4
  299. Active_4.BackgroundColor3 = Color3.fromRGB(85, 255, 0)
  300. Active_4.BorderSizePixel = 0
  301. Active_4.Position = UDim2.new(0.100000001, 0, 0.100000001, 0)
  302. Active_4.Size = UDim2.new(0.800000012, 0, 0.800000012, 0)
  303. Active_4.Visible = false
  304.  
  305. playerESP.Name = "playerESP"
  306. playerESP.Parent = Xploits
  307. playerESP.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  308. playerESP.BackgroundTransparency = 1.000
  309. playerESP.Position = UDim2.new(0, 0, 0.0500000007, 0)
  310. playerESP.Size = UDim2.new(0.649999976, 0, 0.150000006, 0)
  311. playerESP.Font = Enum.Font.DenkOne
  312. playerESP.Text = "Player ESP"
  313. playerESP.TextColor3 = Color3.fromRGB(0, 0, 0)
  314. playerESP.TextScaled = true
  315. playerESP.TextSize = 14.000
  316. playerESP.TextWrapped = true
  317.  
  318. Button_5.Name = "Button"
  319. Button_5.Parent = playerESP
  320. Button_5.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  321. Button_5.BackgroundTransparency = 0.750
  322. Button_5.BorderSizePixel = 0
  323. Button_5.Position = UDim2.new(1.10000002, 0, 0, 0)
  324. Button_5.Size = UDim2.new(0.224999994, 0, 1, 0)
  325. Button_5.Font = Enum.Font.SourceSans
  326. Button_5.Text = ""
  327. Button_5.TextColor3 = Color3.fromRGB(0, 0, 0)
  328. Button_5.TextSize = 14.000
  329.  
  330. Active_5.Name = "Active"
  331. Active_5.Parent = Button_5
  332. Active_5.BackgroundColor3 = Color3.fromRGB(85, 255, 0)
  333. Active_5.BorderSizePixel = 0
  334. Active_5.Position = UDim2.new(0.100000001, 0, 0.100000001, 0)
  335. Active_5.Size = UDim2.new(0.800000012, 0, 0.800000012, 0)
  336. Active_5.Visible = false
  337.  
  338. Button_5.MouseButton1Click:Connect(function()
  339. Active_5.Visible = true
  340.  
  341.  
  342.  
  343.  
  344.  
  345. for i,x in pairs(playersLocation:GetChildren()) do
  346. if x:isA("Model") then
  347.  
  348. local bg = Instance.new("BillboardGui")
  349. bg.Parent = game.Players.LocalPlayer.PlayerGui
  350. bg.AlwaysOnTop = true
  351. bg.Adornee = x
  352. if x.Name == game.Players.LocalPlayer.Name then bg.Adornee = nil end
  353. bg.LightInfluence = 1
  354. bg.Size = UDim2.new(1,0,1,0)
  355. bg.MaxDistance = 100000000000000000000
  356. bg.StudsOffset = Vector3.new(0, 2, 0)
  357.  
  358.  
  359. local text = Instance.new("TextLabel")
  360. text.Size = UDim2.new(10,0,10,0)
  361. text.TextScaled = true
  362. text.Text = x.Name
  363. text.BackgroundTransparency = 0.6
  364. text.TextColor3 = Color3.new(255,255,255)
  365. text.TextStrokeTransparency = 1
  366.  
  367. text.Parent = bg
  368. end
  369. end
  370.  
  371. playersLocation.ChildAdded:Connect(function()
  372. for i,x in pairs(playersLocation:GetChildren()) do
  373. if x:isA("Model") then
  374.  
  375. local bg = Instance.new("BillboardGui")
  376. bg.Parent = game.Players.LocalPlayer.PlayerGui
  377. bg.AlwaysOnTop = true
  378. bg.Adornee = x
  379. if x.Name == game.Players.LocalPlayer.Name then bg.Adornee = nil end
  380. bg.LightInfluence = 1
  381. bg.Size = UDim2.new(1,0,1,0)
  382. bg.MaxDistance = 100000000000000000000
  383. bg.StudsOffset = Vector3.new(0, 2, 0)
  384.  
  385.  
  386. local text = Instance.new("TextLabel")
  387. text.Size = UDim2.new(10,0,10,0)
  388. text.TextScaled = true
  389. text.Text = x.Name
  390. text.BackgroundTransparency = 0.6
  391. text.TextColor3 = Color3.new(255,255,255)
  392. text.TextStrokeTransparency = 1
  393.  
  394. text.Parent = bg
  395. end
  396. end
  397. end)
  398.  
  399. game.Players.LocalPlayer.Character.Humanoid.Died:Connect(function()
  400.  
  401.  
  402. spawn(function()
  403. wait(4)
  404. for i,x in pairs(playersLocation:GetChildren()) do
  405. if x:isA("Model") then
  406.  
  407. local bg = Instance.new("BillboardGui")
  408. bg.Parent = game.Players.LocalPlayer.PlayerGui
  409. bg.AlwaysOnTop = true
  410. bg.Adornee = x
  411. if x.Name == game.Players.LocalPlayer.Name then bg.Adornee = nil end
  412. bg.LightInfluence = 1
  413. bg.Size = UDim2.new(1,0,1,0)
  414. bg.MaxDistance = 100000000000000000000
  415. bg.StudsOffset = Vector3.new(0, 2, 0)
  416.  
  417.  
  418. local text = Instance.new("TextLabel")
  419. text.Size = UDim2.new(10,0,10,0)
  420. text.TextScaled = true
  421. text.Text = x.Name
  422. text.BackgroundTransparency = 0.6
  423. text.TextColor3 = Color3.new(255,255,255)
  424. text.TextStrokeTransparency = 1
  425.  
  426. text.Parent = bg
  427. end
  428. end
  429. end)
  430. end)
  431. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement