Advertisement
RobloxCheaterEZLOL

A Dusty Trip Script

Oct 7th, 2024
1,888
2
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.92 KB | None | 2 0
  1. DONT COPY THIS: Executor I use: https://jjsploit.net/#:~:text=Download%20One%20of%20the%20Best%20Roblox%20Exploiter%20JJSploit
  2. DONT COPY THIS: Not made by me!
  3. DONT COPY THIS: This script it useable for a Dusty Trip
  4.  
  5.  
  6.  
  7.  
  8. local Workspace = game:GetService("Workspace")
  9. local Players = game:GetService("Players")
  10. local LocalPlayer = Players.LocalPlayer
  11. local Character = LocalPlayer.Character
  12. local OrionLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/Giangplay/Script/main/Orion_Library_PE_V2.lua"))()
  13. local Window = OrionLib:MakeWindow({IntroText = "Loading...", IntroIcon = "rbxassetid://7247207481",Name = ("a dusty trip".." | ".. identifyexecutor()), HidePremium = false, SaveConfig = false, IntroEnabled = true, ConfigFolder = "omghax"})
  14.  
  15. local Credits = Window:MakeTab({
  16. Name = "Credits",
  17. Icon = "rbxassetid://7734053426",
  18. PremiumOnly = false
  19. })
  20.  
  21. Credits:AddLabel("made by laziest guys (celestial)")
  22.  
  23. local Cars = Window:MakeTab({
  24. Name = "Cars",
  25. Icon = "rbxassetid://7734053426",
  26. PremiumOnly = false
  27. })
  28.  
  29. Cars:AddButton({
  30. Name = "Cars Fly",
  31. Callback = function()
  32. loadstring(game:HttpGet("https://pastebin.com/raw/sqvFRQ9K"))()
  33. end
  34. })
  35.  
  36. local Player = Window:MakeTab({
  37. Name = "Players",
  38. Icon = "rbxassetid://7734053426",
  39. PremiumOnly = false
  40. })
  41.  
  42. Player:AddTextbox({
  43. Name = "Select Walkspeed",
  44. Default = "Put Number Of Walkspeed Here",
  45. TextDisappear = false,
  46. Callback = function(Value)
  47. _G.Walkspeed = tonumber(Value)
  48. end
  49. })
  50.  
  51. Player:AddButton({
  52. Name = "Set Walkspeed",
  53. Callback = function()
  54. if _G.Walkspeed then
  55. Character.Humanoid.WalkSpeed = _G.Walkspeed
  56. end
  57. end
  58. })
  59.  
  60. Player:AddTextbox({
  61. Name = "Select Jumppower",
  62. Default = "Put Number Of Jumppower Here",
  63. TextDisappear = false,
  64. Callback = function(Value)
  65. _G.Jumppower = tonumber(Value)
  66. end
  67. })
  68.  
  69. Player:AddButton({
  70. Name = "Set Jumppower",
  71. Callback = function()
  72. if _G.Jumppower then
  73. Character.Humanoid.JumpPower = _G.Jumppower
  74. end
  75. end
  76. })
  77.  
  78. Player:AddTextbox({
  79. Name = "Select Gravity",
  80. Default = "Put Number Of Gravity Here",
  81. TextDisappear = false,
  82. Callback = function(Value)
  83. _G.Gravity = tonumber(Value)
  84. end
  85. })
  86.  
  87. Player:AddButton({
  88. Name = "Set Gravity",
  89. Callback = function()
  90. if _G.Gravity then
  91. Workspace.Gravity = _G.Gravity
  92. end
  93. end
  94. })
  95.  
  96. local Teleport = Window:MakeTab({
  97. Name = "Teleport",
  98. Icon = "rbxassetid://7734053426",
  99. PremiumOnly = false
  100. })
  101.  
  102. Teleport:AddButton({
  103. Name = "Spawn",
  104. Callback = function()
  105. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(203, 8, 7857)
  106. end
  107. })
  108.  
  109. Teleport:AddButton({
  110. Name = "Free Pistol",
  111. Callback = function()
  112. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1835, 7, 7911)
  113. end
  114. })
  115.  
  116. Teleport:AddButton({
  117. Name = "Free Gas",
  118. Callback = function()
  119. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1370, 7, 7810)
  120. end
  121. })
  122.  
  123. Teleport:AddButton({
  124. Name = "Secret House",
  125. Callback = function()
  126. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1379, 7, 7554)
  127. end
  128. })
  129.  
  130. Teleport:AddButton({
  131. Name = "Secret House Under Map",
  132. Callback = function()
  133. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(395, -92, 7861)
  134. end
  135. })
  136.  
  137. Teleport:AddButton({
  138. Name = "Secret Sallon (not same as ghost town)",
  139. Callback = function()
  140. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(385, -107, 7898)
  141. end
  142. })
  143.  
  144. Teleport:AddButton({
  145. Name = "Car Trouble",
  146. Callback = function()
  147. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(6288, -16, 7913)
  148. end
  149. })
  150.  
  151. Teleport:AddButton({
  152. Name = "Secret Development Car (they not finished)",
  153. Callback = function()
  154. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4198, -1026, 332)
  155. end
  156. })
  157.  
  158. Teleport:AddButton({
  159. Name = "Ghost Town (20,000m structure near spawn)",
  160. Callback = function()
  161. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(3216, 21, 7756)
  162. end
  163. })
  164.  
  165. Teleport:AddButton({
  166. Name = "Fuel (15,000m structure near spawn)",
  167. Callback = function()
  168. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2205, -475, 7337)
  169. end
  170. })
  171.  
  172. local Misc = Window:MakeTab({
  173. Name = "Misc",
  174. Icon = "rbxassetid://7734053426",
  175. PremiumOnly = false
  176. })
  177.  
  178. Misc:AddButton({
  179. Name = "Destroy GUI",
  180. Callback = function()
  181. OrionLib:Destroy()
  182. end
  183. })
  184.  
  185. Misc:AddButton({
  186. Name = "Demonic Hub",
  187. Callback = function()
  188. loadstring(game:HttpGet("https://raw.githubusercontent.com/Alan0947383/Demonic-HUB-V2/main/S-C-R-I-P-T.lua"))()
  189. end
  190. })
  191.  
  192. Misc:AddButton({
  193. Name = "bring car and teleport to car script",
  194. Callback = function()
  195. loadstring(game:HttpGet("https://raw.githubusercontent.com/Scripterbacon/Test-Script/main/a%20dusty%20trip.Lua"))()
  196. end
  197. })
  198.  
  199. Misc:AddButton({
  200. Name = "a dusty trip script",
  201. Callback = function()
  202. loadstring(game:HttpGet("https://raw.githubusercontent.com/artemy133563/Utilities/main/ADustyTrip"))()
  203. end
  204. })
  205.  
  206. Misc:AddButton({
  207. Name = "Dex Explorer",
  208. Callback = function()
  209. loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/Dex%20Explorer.txt"))()
  210. end
  211. })
  212.  
  213. Misc:AddButton({
  214. Name = "Remote Spy",
  215. Callback = function()
  216. loadstring(game:HttpGet("https://raw.githubusercontent.com/REDzHUB/RS/main/SimpleSpyMobile"))()
  217. end
  218. })
  219.  
  220. Misc:AddButton({
  221. Name = "Position GUI",
  222. Callback = function()
  223. loadstring(game:HttpGet("https://raw.githubusercontent.com/Giangplay/Script/main/Position_Gui.lua"))()
  224. end
  225. })
  226.  
  227. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement