Advertisement
ExecutorForALLdomain

Untitled

Feb 25th, 2024 (edited)
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.18 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local Frame_2 = Instance.new("Frame")
  9. local TextLabel = Instance.new("TextLabel")
  10. local ImageLabel = Instance.new("ImageLabel")
  11. local TextBox = Instance.new("TextBox")
  12.  
  13. --Properties:
  14.  
  15. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16.  
  17. Frame.Parent = ScreenGui
  18. Frame.BackgroundColor3 = Color3.fromRGB(50, 34, 27)
  19. Frame.BackgroundTransparency = 0.150
  20. Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  21. Frame.BorderSizePixel = 0
  22. Frame.Position = UDim2.new(0.748725414, 0, 0.877887785, 0)
  23. Frame.Size = UDim2.new(0, 212, 0, 65)
  24.  
  25. Frame_2.Parent = Frame
  26. Frame_2.BackgroundColor3 = Color3.fromRGB(34, 16, 11)
  27. Frame_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  28. Frame_2.BorderSizePixel = 0
  29. Frame_2.Position = UDim2.new(0.0424528308, 0, 0.184615389, 0)
  30. Frame_2.Size = UDim2.new(0, 195, 0, 43)
  31.  
  32. TextLabel.Parent = Frame_2
  33. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  34. TextLabel.BackgroundTransparency = 1.000
  35. TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  36. TextLabel.BorderSizePixel = 0
  37. TextLabel.Position = UDim2.new(-0.0153846154, 0, 0, 0)
  38. TextLabel.Size = UDim2.new(0, 200, 0, 43)
  39. TextLabel.Font = Enum.Font.SourceSans
  40. TextLabel.Text = "Welcome to Mr.Bean Admin Use the\\nProgram to execute scripts Status\\nEnabled! press : to inject Scripts!"
  41. TextLabel.TextColor3 = Color3.fromRGB(175, 163, 48)
  42. TextLabel.TextScaled = true
  43. TextLabel.TextSize = 14.000
  44. TextLabel.TextWrapped = true
  45.  
  46. ImageLabel.Parent = Frame
  47. ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  48. ImageLabel.BackgroundTransparency = 1.000
  49. ImageLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  50. ImageLabel.BorderSizePixel = 0
  51. ImageLabel.Position = UDim2.new(1.07547164, 0, -0.384615391, 0)
  52. ImageLabel.Size = UDim2.new(0, 86, 0, 90)
  53. ImageLabel.Image = "rbxassetid://16523540787"
  54.  
  55. TextBox.Parent = ScreenGui
  56. TextBox.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  57. TextBox.BackgroundTransparency = 1.000
  58. TextBox.BorderColor3 = Color3.fromRGB(0, 0, 0)
  59. TextBox.BorderSizePixel = 0
  60. TextBox.Position = UDim2.new(0.0109999999, 0, 0, -50)
  61. TextBox.Size = UDim2.new(0, 1251, 0, 50)
  62. TextBox.Font = Enum.Font.Arial
  63. TextBox.Text = ""
  64. TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
  65. TextBox.TextSize = 52.000
  66. TextBox.TextWrapped = true
  67.  
  68. -- Scripts:
  69.  
  70. local function HBDFF_fake_script() -- TextBox.LocalScript
  71. local script = Instance.new('LocalScript', TextBox)
  72.  
  73. local TB = script.Parent
  74.  
  75. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(key)
  76. if key == "E" or key == "e" then
  77. TB.BackgroundTransparency = 0.45
  78. TB:TweenPosition(UDim2.new(0.0109033315, 0, 0.0329153612, 0), "Out", "Back", 0.5, true)
  79.  
  80.  
  81. end
  82. end)
  83. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(key)
  84. if key == "p" or key == "P" then
  85. TB:TweenPosition(UDim2.new({0.011, 0},{0, -50}), "Out", "Back", 0.5, true)
  86. TB.BackgroundTransparency = 1
  87. end
  88. end)
  89.  
  90. local function handleKeyPress(key)
  91. if key == "f" then
  92. local text = TB.Text:lower()
  93. local match = string.match(text, ":sm (.*)")
  94.  
  95. if match then
  96. local message = match
  97. local D = Instance.new("Message", game.Players.LocalPlayer.PlayerGui) D.Text = message wait(2) D:Destroy()
  98.  
  99. -- Ajoutez ici le code pour afficher le message où vous le souhaitez dans votre jeu
  100.  
  101. TB.Text = "" -- Efface le texte après l'affichage du message (si nécessaire)
  102. end
  103. end
  104. end
  105.  
  106. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(handleKeyPress)
  107.  
  108.  
  109. local function handleKeyPress2(key)
  110. local text = TB.Text:lower()
  111. local match = string.match(text, ":fire all")
  112. if key == "f" then
  113. if match then
  114.  
  115. local fire = Instance.new("Fire")
  116. local Players = game.Players
  117.  
  118. if fire and Players then
  119. for _, player in pairs(Players:GetPlayers()) do
  120. local playerHead = player.Character and player.Character:WaitForChild("Head")
  121. local playerFire = fire:Clone()
  122. playerFire.Parent = playerHead
  123. game.Chat:Chat(playerHead,'I AM ON FIRE!')
  124. end
  125. end
  126.  
  127.  
  128. TB.Text = ""
  129. end
  130. end
  131. end
  132.  
  133. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(handleKeyPress2)
  134.  
  135. local function d(key)
  136. local text = TB.Text:lower()
  137. local match, message = string.match(text, ":chat all (.*)")
  138. if key == "f" then
  139. if match then
  140. local Players = game.Players
  141. for _, player in pairs(Players:GetPlayers()) do
  142. local playerHead = player.Character and player.Character:FindFirstChild("Head")
  143. if playerHead then
  144. game.Chat:Chat(playerHead, match)
  145. end
  146. end
  147.  
  148. TB.Text = ""
  149. end
  150. end
  151. end
  152.  
  153. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(d)
  154.  
  155. local function dd(key)
  156. local text = TB.Text:lower()
  157. local match, message = string.match(text, ":knife")
  158. if key == "f" then
  159. if match then
  160. loadstring(game:HttpGet("https://rawscripts.net/raw/Lumber-Tycoon-grab-knife-v4-10647"))()
  161. TB.Text = ""
  162. end
  163. end
  164. end
  165.  
  166. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(dd)
  167.  
  168. local function ddd(key)
  169. local text = TB.Text:lower()
  170. local match, message = string.match(text, ":R6")
  171. if key == "f" then
  172. if match then
  173. loadstring(game:HttpGet("https://raw.githubusercontent.com/Imagnir/r6_anims_for_r15/main/r6_anims.lua"))()
  174. TB.Text = ""
  175. end
  176. end
  177. end
  178.  
  179. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(ddd)
  180.  
  181. local function ddDd(key)
  182. local text = TB.Text:lower()
  183. local match, id = string.match(text, ":decalspam%s*%((%d+)%)")
  184.  
  185. if key == "f" and match then
  186. print("Texte:", text)
  187. print("ID extrait:", id)
  188.  
  189. -- Convertir l'ID en un nombre
  190. local decalID = tonumber(id)
  191.  
  192. -- Vérifier si l'ID est valide
  193. if decalID then
  194. -- DECAL SPAM SCRIPT. CHANGE THIS TO THE DECAL ID YOU WANT TO BE SPAMMED.
  195. local ID = decalID
  196.  
  197. -- IF YOU WANT THE SKYBOX TO BE SPAMMED AS WELL, TURN THIS TO TRUE.
  198. local Skybox = true
  199.  
  200. -- FINALLY, IF YOU WANT PARTICLES TO BE SPAMMED, TURN THIS TO TRUE.
  201. local particle = true
  202.  
  203. -- DO NOT CHANGE BELOW. UNLESS YOU KNOW WHAT YOU'RE DOING.
  204.  
  205. for _, v in pairs(game.Workspace:GetChildren()) do
  206. if v:IsA("Part") then
  207. local decal = Instance.new("Decal")
  208. decal.Texture = "http://www.roblox.com/asset/?id=" .. ID
  209. decal.Parent = v
  210. end
  211. end
  212.  
  213. if Skybox then
  214. local sky = Instance.new("Sky")
  215. sky.Parent = game.Lighting
  216. sky.SkyboxBk = "http://www.roblox.com/asset/?id=" .. ID
  217. sky.SkyboxDn = "http://www.roblox.com/asset/?id=" .. ID
  218. sky.SkyboxFt = "http://www.roblox.com/asset/?id=" .. ID
  219. sky.SkyboxLf = "http://www.roblox.com/asset/?id=" .. ID
  220. sky.SkyboxRt = "http://www.roblox.com/asset/?id=" .. ID
  221. sky.SkyboxUp = "http://www.roblox.com/asset/?id=" .. ID
  222. end
  223.  
  224. if particle then
  225. for _, v in pairs(game.Workspace:GetChildren()) do
  226. if v:IsA("Part") then
  227. local particle = Instance.new("ParticleEmitter")
  228. particle.Texture = "http://www.roblox.com/asset/?id=" .. ID
  229. particle.Parent = v
  230. particle.Rate = 200
  231. end
  232. end
  233. end
  234.  
  235. TB.Text = ""
  236. else
  237. print("ID de décalcomanie invalide.")
  238. end
  239. end
  240. end
  241.  
  242. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(ddDd)
  243.  
  244.  
  245. local function dddd(key)
  246. local text = TB.Text:lower()
  247. local match, message = string.match(text, ":fly")
  248. if key == "f" then
  249. if match then
  250.  
  251. -- Press X to fly
  252. game:GetService("StarterGui"):SetCore("SendNotification",{
  253. Title = "From Mr.Bean Admin", -- Required
  254. Text = "Press X for fly and UNFLY have fun !", -- Required
  255. Icon = "rbxassetid://1234567890" -- Optional
  256.  
  257. })
  258.  
  259. local plr = game.Players.LocalPlayer
  260. local mouse = plr:GetMouse()
  261.  
  262. localplayer = plr
  263.  
  264. if workspace:FindFirstChild("Core") then
  265. workspace.Core:Destroy()
  266. end
  267.  
  268. local Core = Instance.new("Part")
  269. Core.Name = "Core"
  270. Core.Size = Vector3.new(0.05, 0.05, 0.05)
  271.  
  272. spawn(function()
  273. Core.Parent = workspace
  274. local Weld = Instance.new("Weld", Core)
  275. Weld.Part0 = Core
  276. Weld.Part1 = localplayer.Character.LowerTorso
  277. Weld.C0 = CFrame.new(0, 0, 0)
  278. end)
  279.  
  280. workspace:WaitForChild("Core")
  281.  
  282. local torso = workspace.Core
  283. flying = true
  284. local speed=10
  285. local keys={a=false,d=false,w=false,s=false}
  286. local e1
  287. local e2
  288. local function start()
  289. local pos = Instance.new("BodyPosition",torso)
  290. local gyro = Instance.new("BodyGyro",torso)
  291. pos.Name="EPIXPOS"
  292. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  293. pos.position = torso.Position
  294. gyro.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  295. gyro.cframe = torso.CFrame
  296. repeat
  297. wait()
  298. localplayer.Character.Humanoid.PlatformStand=true
  299. local new=gyro.cframe - gyro.cframe.p + pos.position
  300. if not keys.w and not keys.s and not keys.a and not keys.d then
  301. speed=5
  302. end
  303. if keys.w then
  304. new = new + workspace.CurrentCamera.CoordinateFrame.lookVector * speed
  305. speed=speed+0
  306. end
  307. if keys.s then
  308. new = new - workspace.CurrentCamera.CoordinateFrame.lookVector * speed
  309. speed=speed+0
  310. end
  311. if keys.d then
  312. new = new * CFrame.new(speed,0,0)
  313. speed=speed+0
  314. end
  315. if keys.a then
  316. new = new * CFrame.new(-speed,0,0)
  317. speed=speed+0
  318. end
  319. if speed>10 then
  320. speed=5
  321. end
  322. pos.position=new.p
  323. if keys.w then
  324. gyro.cframe = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(-math.rad(speed*0),0,0)
  325. elseif keys.s then
  326. gyro.cframe = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(math.rad(speed*0),0,0)
  327. else
  328. gyro.cframe = workspace.CurrentCamera.CoordinateFrame
  329. end
  330. until flying == false
  331. if gyro then gyro:Destroy() end
  332. if pos then pos:Destroy() end
  333. flying=false
  334. localplayer.Character.Humanoid.PlatformStand=false
  335. speed=10
  336. end
  337. e1=mouse.KeyDown:connect(function(key)
  338. if not torso or not torso.Parent then flying=false e1:disconnect() e2:disconnect() return end
  339. if key=="w" then
  340. keys.w=true
  341. elseif key=="s" then
  342. keys.s=true
  343. elseif key=="a" then
  344. keys.a=true
  345. elseif key=="d" then
  346. keys.d=true
  347. elseif key=="x" then
  348. if flying==true then
  349. flying=false
  350. else
  351. flying=true
  352. start()
  353. end
  354. end
  355. end)
  356. e2=mouse.KeyUp:connect(function(key)
  357. if key=="w" then
  358. keys.w=false
  359. elseif key=="s" then
  360. keys.s=false
  361. elseif key=="a" then
  362. keys.a=false
  363. elseif key=="d" then
  364. keys.d=false
  365. end
  366. end)
  367. start()
  368. end
  369.  
  370.  
  371.  
  372. TB.Text = ""
  373. end
  374. end
  375.  
  376.  
  377. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(dddd)
  378.  
  379. local function Hello(key)
  380. local text = TB.Text:lower()
  381. local match, message = string.match(text, ":Hello")
  382. if key == "f" then
  383. if match then
  384. print("Hello")
  385. TB.Text = ""
  386. end
  387. end
  388. end
  389.  
  390. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(Hello)
  391. end
  392. coroutine.wrap(HBDFF_fake_script)()
  393.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement