ItzDiegoExploitzBoi

Swordburst 2

May 16th, 2019
1,820
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.89 KB | None | 0 0
  1. -- Diego senpai was here
  2. -- Farewell Infortality.
  3. -- Version: 2.82
  4. -- Instances:
  5. local Swordhacks = Instance.new("ScreenGui")
  6. local Frame = Instance.new("Frame")
  7. local TextButton = Instance.new("TextButton")
  8. local TextButton_2 = Instance.new("TextButton")
  9. local TextButton_3 = Instance.new("TextButton")
  10. local TextButton_4 = Instance.new("TextButton")
  11. local TextButton_5 = Instance.new("TextButton")
  12. local TextButton_6 = Instance.new("TextButton")
  13. local TextButton_7 = Instance.new("TextButton")
  14. local TextButton_8 = Instance.new("TextButton")
  15. local TextButton_9 = Instance.new("TextButton")
  16. local TextButton_10 = Instance.new("TextButton")
  17. local TextButton_11 = Instance.new("TextButton")
  18. local TextButton_12 = Instance.new("TextButton")
  19. local TextButton_13 = Instance.new("TextButton")
  20. local TextButton_14 = Instance.new("TextButton")
  21. --Properties:
  22. Swordhacks.Name = "Swordhacks!"
  23. Swordhacks.Parent = game.CoreGui
  24.  
  25. Frame.Parent = Swordhacks
  26. Frame.BackgroundColor3 = Color3.new(0.00392157, 0.00392157, 0.00392157)
  27. Frame.BackgroundTransparency = 0.30000001192093
  28. Frame.BorderColor3 = Color3.new(0, 0, 0)
  29. Frame.BorderSizePixel = 0
  30. Frame.Position = UDim2.new(0.383318394, 0, 0.0803571567, 0)
  31. Frame.Size = UDim2.new(0, 400, 0, 432)
  32. Frame.Active = true
  33. Frame.Draggable = true
  34.  
  35. TextButton.Parent = Frame
  36. TextButton.BackgroundColor3 = Color3.new(0, 0, 0)
  37. TextButton.BackgroundTransparency = 0.40000000596046
  38. TextButton.BorderColor3 = Color3.new(0.666667, 0, 0)
  39. TextButton.BorderSizePixel = 2
  40. TextButton.Position = UDim2.new(0.015369568, 0, 0.134887412, 0)
  41. TextButton.Size = UDim2.new(0, 188, 0, 31)
  42. TextButton.Font = Enum.Font.SourceSans
  43. TextButton.Text = "Auto Farm"
  44. TextButton.TextColor3 = Color3.new(0.666667, 0, 0)
  45. TextButton.TextScaled = true
  46. TextButton.TextSize = 14
  47. TextButton.TextWrapped = true
  48. TextButton.MouseButton1Down:connect(function()
  49. local Rawr = {}
  50. local Api = {}
  51. local Log = {}
  52.  
  53. local function Service(name)
  54. return game:GetService(name)
  55. end
  56.  
  57. local function SecondsToClock(seconds)
  58. -- https://gist.github.com/jesseadams/791673
  59. local seconds = tonumber(seconds)
  60. if seconds <= 0 then
  61. return "00:00:00";
  62. else
  63. local hours = string.format("%02.f", math.floor(seconds/3600));
  64. local mins = string.format("%02.f", math.floor(seconds/60 - (hours*60)));
  65. local secs = string.format("%02.f", math.floor(seconds - hours*3600 - mins *60));
  66. return hours..":"..mins..":"..secs
  67. end
  68. end
  69.  
  70. function Log:Init()
  71. local Profile = game:GetService("ReplicatedStorage").Profiles[Api.GetPlayer().Name]
  72. local Vel = Profile.Stats.Vel
  73. local LastVel = Vel.Value
  74. Log.Earned = {
  75. Vel = 0,
  76. Items = {},
  77. }
  78. Profile.Inventory.ChildAdded:Connect(function(item)
  79. table.insert(Log.Earned.Items, item.Name)
  80. if(Api.GetSetting("auto_dismantle") == true)then
  81. Api.Dismantle(item.Name)
  82. end
  83. end)
  84. Vel.Changed:Connect(function()
  85. local earn = Vel.Value - LastVel
  86. LastVel = Vel.Value
  87. Log.Earned.Vel = Log.Earned.Vel + earn
  88. end)
  89. end
  90.  
  91. function Log.Save()
  92. Log.Earned.RunTime = SecondsToClock(tick()-Api.Start)
  93. Synapse:WriteFile(tick() .. "_log.dat", game:GetService("HttpService"):JSONEncode(Log.Earned))
  94. end
  95.  
  96. function Rawr:Check(...) --secret sauce
  97. local player = Api.GetPlayer()
  98. local character = Api.GetCharacter()
  99. local args = {...}
  100.  
  101. if(character and character.PrimaryPart and args[1]:lower()=="cframe")then
  102. --player.Character = Api.FakeCharacter
  103. player.Character.RobloxLocked = true
  104. wait(Api.GetSetting("rawr_bypass_speed"))
  105. character:SetPrimaryPartCFrame(args[2])
  106. wait(Api.GetSetting("rawr_bypass_speed"))
  107. --player.Character = character
  108. player.Character.RobloxLocked = false
  109. end
  110. end
  111.  
  112. function Api.GetPlayer()
  113. return game:GetService("Players").LocalPlayer
  114. end
  115.  
  116. function Api.Dismantle(name)
  117. game.ReplicatedStorage.Event:FireServer("Equipment", {
  118. "Dismantle",
  119. game:GetService("ReplicatedStorage").Profiles[Api.GetPlayer().Name].Inventory[name]
  120. })
  121. end
  122.  
  123. function Api.Replicate(object)
  124. local Model = Instance.new("Model")
  125. Model.Name = object.Name
  126. for index, child in pairs(object:GetChildren()) do
  127. local c = child:Clone()
  128. c.Parent = Model
  129. end
  130. if(object.PrimaryPart)then
  131. Model.PrimaryPart = Model[object.PrimaryPart.Name]
  132. end
  133. return Model
  134. end
  135.  
  136. function Api.GetCharacter()
  137. return Api.Character or Api.GetPlayer().Character
  138. end
  139.  
  140. function Api.GetEntity(model)
  141. return model:FindFirstChild("Entity")
  142. end
  143.  
  144. function Api.Settings(...)
  145. Api.Settings = {}
  146. for name, value in pairs(...) do
  147. Api.Settings[name] = value
  148. end
  149. end
  150.  
  151. function Api.GetSetting(name)
  152. return Api.Settings[name]
  153. end
  154.  
  155. function Api.IsValid(model)
  156. if(model.PrimaryPart and model:FindFirstChild("Entity") and model.Entity:FindFirstChild("Health") and model.Parent~=nil and model:FindFirstChild("Nameplate"))then
  157. return true
  158. end
  159. end
  160.  
  161. function Api.GetPlayerDistances(model)
  162. local localPlayer = Api.GetPlayer()
  163. local distances = {}
  164. for index, player in pairs(Service("Players"):GetChildren()) do
  165. if(player~=localPlayer and player.Character and player.Character:FindFirstChild("HumanoidRootPart") and model:FindFirstChild("HumanoidRootPart"))then
  166. distances[player.Name] = (model.HumanoidRootPart.Position - player.Character.HumanoidRootPart.Position).magnitude
  167. end
  168. end
  169. return distances
  170. end
  171.  
  172. function Api.CheckNear(monster)
  173. if(Api.GetSetting("avoid_players_nearby")["Enabled"] == true)then
  174. local max_distance = Api.GetSetting("avoid_players_nearby")["Distance"]
  175. local distances = Api.GetPlayerDistances(monster)
  176. for player, distance in pairs(distances)do
  177. if(distance <= max_distance)then
  178. return false
  179. end
  180. end
  181. end
  182. return true
  183. end
  184.  
  185. function Api.CheckBlacklist(monster)
  186. for index, blacklist in pairs(Api.Blacklist) do
  187. if(monster == blacklist)then
  188. return false
  189. end
  190. end
  191. return true
  192. end
  193.  
  194. function Api.GetMonsters()
  195. local targets = {}
  196. for index, monster in pairs(Service("Workspace").Mobs:GetChildren()) do
  197. local entity = monster:FindFirstChildOfClass("Folder")
  198. local filterApplied = false
  199. local distanceCheck = Api.CheckNear(monster)
  200. if(monster.PrimaryPart and Api.IsValid(monster) and distanceCheck and Api.CheckBlacklist(monster))then
  201. if(Api.GetSetting("monster_filter")["Enabled"] == true)then
  202. if(entity.Health.Value >= Api.GetSetting("monster_filter")["max_monster_health"] and entity.Exp.Value >= Api.GetSetting("monster_filter")["min_exp_earned"])then
  203. table.insert(targets, monster)
  204. end
  205. filterApplied = true
  206. elseif(Api.GetSetting("target_specific_enemy").Enabled == true)then
  207. if(Api.GetSetting("target_specific_enemy").Names[monster.Nameplate.SurfaceGui.TextLabel.Text] == true)then
  208. table.insert(targets, monster)
  209. end
  210. filterApplied = true
  211. end
  212. if(filterApplied == false)then
  213. table.insert(targets, monster)
  214. end
  215. end
  216. end
  217. return targets
  218. end
  219.  
  220. function Api:Connect()
  221. local player = Api.GetPlayer()
  222. local character = Api.GetCharacter()
  223. local setupCharacter = function(character)
  224. Api.FakeCharacter = Api.Replicate(character)
  225. end
  226.  
  227. setupCharacter(character)
  228. player.CharacterAdded:Connect(setupCharacter)
  229. end
  230.  
  231. function Api:SetKeys()
  232. game:GetService("UserInputService").InputBegan:connect(function(Key)
  233. if(Key.KeyCode == Api.GetSetting("stop_key"))then
  234. Api.Enabled = false
  235. elseif(Key.KeyCode == Api.GetSetting("pause_key"))then
  236. Api.Paused = true
  237. elseif(Key.KeyCode == Api.GetSetting("unpause_key"))then
  238. Api.Paused = false
  239. end
  240. end)
  241. end
  242.  
  243. function Api:Init()
  244. Api.Blacklist = {}
  245. Api.Start = tick()
  246. Api.Paused = false
  247. Api.CanClick = false
  248. Api.Enabled = true
  249. wait(Api.GetSetting("StartDelay"))
  250. spawn(function()
  251. while wait(Api.GetSetting("click_break_speed")) and Api.Enabled do
  252. if(Api.Paused == false and Api.CanClick == true)then
  253. if(mouse1click)then
  254. mouse1click()
  255. end
  256. else
  257. wait()
  258. end
  259. end
  260. end)
  261. while wait() and Api.Enabled do
  262. if(Api.Paused == false)then
  263. for index, monster in pairs(Api.GetMonsters()) do
  264. local distanceCheck = Api.CheckNear(monster)
  265. if(distanceCheck and Api.IsValid(monster) and Api.Enabled)then -- recheck
  266. Rawr:Check("CFrame", monster:GetPrimaryPartCFrame() * CFrame.new(0, 0, 3)) -- bypass
  267. wait(Api.GetSetting("swap_monster_speed"))
  268. local entity = Api.GetEntity(monster)
  269. local base = entity.Health.Value
  270. entity.Health.Changed:Connect(function()
  271. if(entity.Health.Value == base)then
  272. dontBreak = false
  273. end
  274. end)
  275. dontBreak = true
  276. local timer = 0
  277. while dontBreak and Api.Enabled do
  278. if(Api.Paused == false)then
  279. local thisTime = wait()
  280. wait(thisTime)
  281. timer = timer + thisTime
  282. if(timer >= Api.GetSetting("timeout")["time"])then
  283. warn('Timeout exceeded!')
  284. if(Api.GetSetting("timeout")["blacklist_monster_after_timeout"] == true)then
  285. table.insert(Api.Blacklist, monster)
  286. end
  287. break
  288. end
  289. if(Api.IsValid(monster) and entity.Health.Value > 0)then
  290. local character = Api.GetCharacter()
  291. if(character)then
  292. Api.CanClick = true
  293. character:SetPrimaryPartCFrame(monster:GetPrimaryPartCFrame() * CFrame.new(0, 0, 3))
  294. else
  295. character = Api.GetCharacter()
  296. if(character)then
  297. Rawr:Check("CFrame", monster:GetPrimaryPartCFrame() * CFrame.new(0, 0, 3)) -- bypass
  298. wait(Api.GetSetting("swap_monster_speed"))
  299. end
  300. end
  301. else
  302. Api.CanClick = false
  303. break
  304. end
  305. else
  306. wait()
  307. end
  308. end
  309. wait(Api.GetSetting("swap_monster_speed"))
  310. end
  311. end
  312. end
  313. end
  314. Log.Save()
  315. end
  316.  
  317. Api.Settings({
  318. ["start_delay"] = 2,
  319. ["stop_key"] = Enum.KeyCode.Escape,
  320. ["pause_key"] = Enum.KeyCode.LeftControl,
  321. ["unpause_key"] = Enum.KeyCode.RightControl,
  322. ["rawr_bypass_speed"] = 0.5, -- 0.65
  323. ["swap_monster_speed"] = 0.2, -- 0.7,
  324. ["click_break_speed"] = .01,
  325. ["auto_dismantle"] = false,
  326. ["timeout"] = {
  327. ["time"] = 15,
  328. ["blacklist_monster_after_timeout"] = true
  329. },
  330. ["monster_filter"] = {
  331. ["Enabled"] = false,
  332. ["max_monster_health"] = 0,
  333. ["min_exp_earned"] = 0,
  334. },
  335. ["avoid_players_nearby"] = {
  336. ["Enabled"] = true,
  337. ["Distance"] = 200
  338. },
  339. ["target_specific_enemy"] = {
  340. ["Enabled"] = false,
  341. ["Names"] = {
  342. ["Giant Ruins Hornet"] = false,
  343. ["Enraged Lingerer"] = true,
  344. ["Undead Berserker"] = true,
  345. ["Undead Warrior"] = true,
  346. ["Gargoyle Reaper"] = false,
  347. ["Mortis the Flaming Sear"] = false,
  348. }
  349. }
  350. })
  351.  
  352. Api:SetKeys()
  353. Api:Connect()
  354. Log:Init()
  355. Api:Init()
  356. end)
  357.  
  358. TextButton_2.Parent = Frame
  359. TextButton_2.BackgroundColor3 = Color3.new(0, 0, 0)
  360. TextButton_2.BackgroundTransparency = 0.40000000596046
  361. TextButton_2.BorderColor3 = Color3.new(0.666667, 0, 0)
  362. TextButton_2.BorderSizePixel = 2
  363. TextButton_2.Position = UDim2.new(0.522869527, 0, 0.134887412, 0)
  364. TextButton_2.Size = UDim2.new(0, 184, 0, 31)
  365. TextButton_2.Font = Enum.Font.SourceSans
  366. TextButton_2.Text = "INF STAMINA"
  367. TextButton_2.TextColor3 = Color3.new(0.666667, 0, 0)
  368. TextButton_2.TextScaled = true
  369. TextButton_2.TextSize = 14
  370. TextButton_2.TextWrapped = true
  371. TextButton_2.MouseButton1Down:connect(function()
  372. local client = game:GetService("Players").LocalPlayer
  373. while wait() do
  374. if client.Character then
  375. client.Character:WaitForChild("Entity").Stamina.Value = 100
  376. end
  377. end
  378. end)
  379.  
  380. TextButton_3.Parent = Frame
  381. TextButton_3.BackgroundColor3 = Color3.new(0, 0, 0)
  382. TextButton_3.BackgroundTransparency = 0.40000000596046
  383. TextButton_3.BorderColor3 = Color3.new(0.666667, 0, 0)
  384. TextButton_3.BorderSizePixel = 2
  385. TextButton_3.Position = UDim2.new(0.0203695334, 0, 0.588591099, 0)
  386. TextButton_3.Size = UDim2.new(0, 184, 0, 31)
  387. TextButton_3.Font = Enum.Font.SourceSans
  388. TextButton_3.Text = "Knight Dungeon"
  389. TextButton_3.TextColor3 = Color3.new(0.666667, 0, 0)
  390. TextButton_3.TextScaled = true
  391. TextButton_3.TextSize = 14
  392. TextButton_3.TextWrapped = true
  393. TextButton_3.MouseButton1Down:connect(function()
  394. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-3052.86646, -237.516937, 1984.0238))
  395. end)
  396.  
  397. TextButton_4.Parent = Frame
  398. TextButton_4.BackgroundColor3 = Color3.new(0, 0, 0)
  399. TextButton_4.BackgroundTransparency = 0.15000000596046
  400. TextButton_4.BorderColor3 = Color3.new(1, 0, 0)
  401. TextButton_4.Position = UDim2.new(0, 0, 0.469907403, 0)
  402. TextButton_4.Size = UDim2.new(0, 400, 0, 29)
  403. TextButton_4.Font = Enum.Font.SourceSans
  404. TextButton_4.Text = "Tp's"
  405. TextButton_4.TextColor3 = Color3.new(0.666667, 0, 0)
  406. TextButton_4.TextScaled = true
  407. TextButton_4.TextSize = 14
  408. TextButton_4.TextWrapped = true
  409.  
  410. TextButton_5.Parent = Frame
  411. TextButton_5.BackgroundColor3 = Color3.new(0, 0, 0)
  412. TextButton_5.BackgroundTransparency = 0.40000000596046
  413. TextButton_5.BorderColor3 = Color3.new(0.666667, 0, 0)
  414. TextButton_5.BorderSizePixel = 2
  415. TextButton_5.Position = UDim2.new(0.522869527, 0, 0.588591099, 0)
  416. TextButton_5.Size = UDim2.new(0, 184, 0, 31)
  417. TextButton_5.Font = Enum.Font.SourceSans
  418. TextButton_5.Text = "Boss Room 1"
  419. TextButton_5.TextColor3 = Color3.new(0.666667, 0, 0)
  420. TextButton_5.TextScaled = true
  421. TextButton_5.TextSize = 14
  422. TextButton_5.TextWrapped = true
  423. TextButton_5.MouseButton1Down:connect(function()
  424. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-3059.16, -225, 1126.32))
  425. end)
  426.  
  427. TextButton_6.Parent = Frame
  428. TextButton_6.BackgroundColor3 = Color3.new(0, 0, 0)
  429. TextButton_6.BackgroundTransparency = 0.40000000596046
  430. TextButton_6.BorderColor3 = Color3.new(0.666667, 0, 0)
  431. TextButton_6.BorderSizePixel = 2
  432. TextButton_6.Position = UDim2.new(0.522869527, 0, 0.688128114, 0)
  433. TextButton_6.Size = UDim2.new(0, 184, 0, 31)
  434. TextButton_6.Font = Enum.Font.SourceSans
  435. TextButton_6.Text = "Crab Spawn"
  436. TextButton_6.TextColor3 = Color3.new(0.666667, 0, 0)
  437. TextButton_6.TextScaled = true
  438. TextButton_6.TextSize = 14
  439. TextButton_6.TextWrapped = true
  440. TextButton_6.MouseButton1Down:connect(function()
  441. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(356.213531, 43.1817932, -1149.39258))
  442.  
  443. end)
  444.  
  445.  
  446. TextButton_7.Parent = Frame
  447. TextButton_7.BackgroundColor3 = Color3.new(0, 0, 0)
  448. TextButton_7.BackgroundTransparency = 0.40000000596046
  449. TextButton_7.BorderColor3 = Color3.new(0.666667, 0, 0)
  450. TextButton_7.BorderSizePixel = 2
  451. TextButton_7.Position = UDim2.new(0.025369525, 0, 0.688128114, 0)
  452. TextButton_7.Size = UDim2.new(0, 184, 0, 31)
  453. TextButton_7.Font = Enum.Font.SourceSans
  454. TextButton_7.Text = "Dire Spawn"
  455. TextButton_7.TextColor3 = Color3.new(0.666667, 0, 0)
  456. TextButton_7.TextScaled = true
  457. TextButton_7.TextSize = 14
  458. TextButton_7.TextWrapped = true
  459. TextButton_7.MouseButton1Down:connect(function()
  460. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(219.48172, 55.8494263, 1018.37836))
  461.  
  462. end)
  463.  
  464. TextButton_8.Parent = Frame
  465. TextButton_8.BackgroundColor3 = Color3.new(0, 0, 0)
  466. TextButton_8.BackgroundTransparency = 0.40000000596046
  467. TextButton_8.BorderColor3 = Color3.new(0.666667, 0, 0)
  468. TextButton_8.BorderSizePixel = 2
  469. TextButton_8.Position = UDim2.new(0.025369525, 0, 0.783035517, 0)
  470. TextButton_8.Size = UDim2.new(0, 184, 0, 31)
  471. TextButton_8.Font = Enum.Font.SourceSans
  472. TextButton_8.Text = "Mini Boss"
  473. TextButton_8.TextColor3 = Color3.new(0.666667, 0, 0)
  474. TextButton_8.TextScaled = true
  475. TextButton_8.TextSize = 14
  476. TextButton_8.TextWrapped = true
  477. TextButton_8.MouseButton1Down:connect(function()
  478. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(250, 50, 1025) + Vector3.new(1,0,0)
  479. end)
  480.  
  481. TextButton_9.Parent = Frame
  482. TextButton_9.BackgroundColor3 = Color3.new(0, 0, 0)
  483. TextButton_9.BackgroundTransparency = 0.40000000596046
  484. TextButton_9.BorderColor3 = Color3.new(0.666667, 0, 0)
  485. TextButton_9.BorderSizePixel = 2
  486. TextButton_9.Position = UDim2.new(0.267869532, 0, 0.894146681, 0)
  487. TextButton_9.Size = UDim2.new(0, 184, 0, 31)
  488. TextButton_9.Font = Enum.Font.SourceSans
  489. TextButton_9.Text = "Auto Farm Cant Leave Tab"
  490. TextButton_9.TextColor3 = Color3.new(0.666667, 0, 0)
  491. TextButton_9.TextScaled = true
  492. TextButton_9.TextSize = 14
  493. TextButton_9.TextWrapped = true
  494.  
  495.  
  496. TextButton_10.Parent = Frame
  497. TextButton_10.BackgroundColor3 = Color3.new(0, 0, 0)
  498. TextButton_10.BackgroundTransparency = 0.40000000596046
  499. TextButton_10.BorderColor3 = Color3.new(0.666667, 0, 0)
  500. TextButton_10.BorderSizePixel = 2
  501. TextButton_10.Position = UDim2.new(0.180369571, 0, 0.0145170419, 0)
  502. TextButton_10.Size = UDim2.new(0, 242, 0, 31)
  503. TextButton_10.Font = Enum.Font.SourceSans
  504. TextButton_10.Text = "Roblox Pain"
  505. TextButton_10.TextColor3 = Color3.new(0.666667, 0, 0)
  506. TextButton_10.TextScaled = true
  507. TextButton_10.TextSize = 14
  508. TextButton_10.TextWrapped = true
  509.  
  510. TextButton_11.Parent = Frame
  511. TextButton_11.BackgroundColor3 = Color3.new(0, 0, 0)
  512. TextButton_11.BackgroundTransparency = 0.40000000596046
  513. TextButton_11.BorderColor3 = Color3.new(0.666667, 0, 0)
  514. TextButton_11.BorderSizePixel = 2
  515. TextButton_11.Position = UDim2.new(0.0203695688, 0, 0.250628173, 0)
  516. TextButton_11.Size = UDim2.new(0, 188, 0, 31)
  517. TextButton_11.Font = Enum.Font.SourceSans
  518. TextButton_11.Text = "Max Speed"
  519. TextButton_11.TextColor3 = Color3.new(0.666667, 0, 0)
  520. TextButton_11.TextScaled = true
  521. TextButton_11.TextSize = 14
  522. TextButton_11.TextWrapped = true
  523. TextButton_11.MouseButton1Down:connect(function()
  524. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 65
  525.  
  526. end)
  527.  
  528. TextButton_12.Parent = Frame
  529. TextButton_12.BackgroundColor3 = Color3.new(0, 0, 0)
  530. TextButton_12.BackgroundTransparency = 0.40000000596046
  531. TextButton_12.BorderColor3 = Color3.new(0.666667, 0, 0)
  532. TextButton_12.BorderSizePixel = 2
  533. TextButton_12.Position = UDim2.new(0.522869587, 0, 0.250628173, 0)
  534. TextButton_12.Size = UDim2.new(0, 188, 0, 31)
  535. TextButton_12.Font = Enum.Font.SourceSans
  536. TextButton_12.Text = "Crystal"
  537. TextButton_12.TextColor3 = Color3.new(0.666667, 0, 0)
  538. TextButton_12.TextScaled = true
  539. TextButton_12.TextSize = 14
  540. TextButton_12.TextWrapped = true
  541. TextButton_12.MouseButton1Down:connect(function()
  542. game.Workspace[PlayerName].HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-817.8, -98.17, 602.55))
  543. end)
  544.  
  545. TextButton_13.Parent = Frame
  546. TextButton_13.BackgroundColor3 = Color3.new(0, 0, 0)
  547. TextButton_13.BackgroundTransparency = 0.40000000596046
  548. TextButton_13.BorderColor3 = Color3.new(0.666667, 0, 0)
  549. TextButton_13.BorderSizePixel = 2
  550. TextButton_13.Position = UDim2.new(0.522869527, 0, 0.783035517, 0)
  551. TextButton_13.Size = UDim2.new(0, 184, 0, 31)
  552. TextButton_13.Font = Enum.Font.SourceSans
  553. TextButton_13.Text = "Random Mob"
  554. TextButton_13.TextColor3 = Color3.new(0.666667, 0, 0)
  555. TextButton_13.TextScaled = true
  556. TextButton_13.TextSize = 14
  557. TextButton_13.TextWrapped = true
  558. TextButton_13.MouseButton1Down:connect(function()
  559. local model = game.Workspace.Mobs
  560. local mobs = model:GetChildren()
  561. for i =1, #mobs do
  562. local themob = mobs[math.random(#mobs)]
  563. if themob:findFirstChild("Torso") then
  564. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(themob.Torso.Position)
  565. end
  566. end
  567. end)
  568.  
  569. TextButton_14.Parent = Frame
  570. TextButton_14.BackgroundColor3 = Color3.new(0, 0, 0)
  571. TextButton_14.BackgroundTransparency = 0.40000000596046
  572. TextButton_14.BorderColor3 = Color3.new(0.666667, 0, 0)
  573. TextButton_14.BorderSizePixel = 2
  574. TextButton_14.Position = UDim2.new(0.282869577, 0, 0.36636892, 0)
  575. TextButton_14.Size = UDim2.new(0, 188, 0, 31)
  576. TextButton_14.Font = Enum.Font.SourceSans
  577. TextButton_14.Text = "High Jump"
  578. TextButton_14.TextColor3 = Color3.new(0.666667, 0, 0)
  579. TextButton_14.TextScaled = true
  580. TextButton_14.TextSize = 14
  581. TextButton_14.TextWrapped = true
  582. TextButton_14.MouseButton1Down:connect(function()
  583. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 100
  584.  
  585. end)
  586. -- Scripts:
Add Comment
Please, Sign In to add comment