Advertisement
Axprotss

Flame thrower test

Aug 16th, 2022
1,319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 33.32 KB | Gaming | 0 0
  1. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  2. local Player,game,owner = owner,game
  3. local RealPlayer = Player
  4. do
  5.     print("FE Compatibility code by Mokiros")
  6.     local rp = RealPlayer
  7.     script.Parent = rp.Character
  8.    
  9.     --RemoteEvent for communicating
  10.     local Event = Instance.new("RemoteEvent")
  11.     Event.Name = "UserInput_Event"
  12.  
  13.     --Fake event to make stuff like Mouse.KeyDown work
  14.     local function fakeEvent()
  15.         local t = {_fakeEvent=true,Functions={},Connect=function(self,f)table.insert(self.Functions,f) end}
  16.         t.connect = t.Connect
  17.         return t
  18.     end
  19.  
  20.     --Creating fake input objects with fake variables
  21.     local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
  22.     local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  23.     local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  24.         CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  25.     end}
  26.     --Merged 2 functions into one by checking amount of arguments
  27.     CAS.UnbindAction = CAS.BindAction
  28.  
  29.     --This function will trigger the events that have been :Connect()'ed
  30.     local function te(self,ev,...)
  31.         local t = m[ev]
  32.         if t and t._fakeEvent then
  33.             for _,f in pairs(t.Functions) do
  34.                 f(...)
  35.             end
  36.         end
  37.     end
  38.     m.TrigEvent = te
  39.     UIS.TrigEvent = te
  40.  
  41.     Event.OnServerEvent:Connect(function(plr,io)
  42.         if plr~=rp then return end
  43.         m.Target = io.Target
  44.         m.Hit = io.Hit
  45.         if not io.isMouse then
  46.             local b = io.UserInputState == Enum.UserInputState.Begin
  47.             if io.UserInputType == Enum.UserInputType.MouseButton1 then
  48.                 return m:TrigEvent(b and "Button1Down" or "Button1Up")
  49.             end
  50.             for _,t in pairs(CAS.Actions) do
  51.                 for _,k in pairs(t.Keys) do
  52.                     if k==io.KeyCode then
  53.                         t.Function(t.Name,io.UserInputState,io)
  54.                     end
  55.                 end
  56.             end
  57.             m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  58.             UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false)
  59.         end
  60.     end)
  61.     Event.Parent = NLS([==[
  62.     local Player = game:GetService("Players").LocalPlayer
  63.     local Event = script:WaitForChild("UserInput_Event")
  64.  
  65.     local Mouse = Player:GetMouse()
  66.     local UIS = game:GetService("UserInputService")
  67.     local input = function(io,a)
  68.         if a then return end
  69.         --Since InputObject is a client-side instance, we create and pass table instead
  70.         Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  71.     end
  72.     UIS.InputBegan:Connect(input)
  73.     UIS.InputEnded:Connect(input)
  74.  
  75.     local h,t
  76.     --Give the server mouse data 30 times every second, but only if the values changed
  77.     --If player is not moving their mouse, client won't fire events
  78.     while wait(1/30) do
  79.         if h~=Mouse.Hit or t~=Mouse.Target then
  80.             h,t=Mouse.Hit,Mouse.Target
  81.             Event:FireServer({isMouse=true,Target=t,Hit=h})
  82.         end
  83.     end]==],Player.Character)
  84.  
  85.     ----Sandboxed game object that allows the usage of client-side methods and services
  86.     --Real game object
  87.     local _rg = game
  88.  
  89.     --Metatable for fake service
  90.     local fsmt = {
  91.         __index = function(self,k)
  92.             local s = rawget(self,"_RealService")
  93.             if s then return s[k] end
  94.         end,
  95.         __newindex = function(self,k,v)
  96.             local s = rawget(self,"_RealService")
  97.             if s then s[k]=v end
  98.         end,
  99.         __call = function(self,...)
  100.             local s = rawget(self,"_RealService")
  101.             if s then return s(...) end
  102.         end
  103.     }
  104.     local function FakeService(t,RealService)
  105.         t._RealService = typeof(RealService)=="string" and _rg:GetService(RealService) or RealService
  106.         return setmetatable(t,fsmt)
  107.     end
  108.  
  109.     --Fake game object
  110.     local g = {
  111.         GetService = function(self,s)
  112.             return self[s]
  113.         end,
  114.         Players = FakeService({
  115.             LocalPlayer = FakeService({GetMouse=function(self)return m end},Player)
  116.         },"Players"),
  117.         UserInputService = FakeService(UIS,"UserInputService"),
  118.         ContextActionService = FakeService(CAS,"ContextActionService"),
  119.     }
  120.     rawset(g.Players,"localPlayer",g.Players.LocalPlayer)
  121.     g.service = g.GetService
  122.    
  123.     g.RunService = FakeService({
  124.         RenderStepped = _rg:GetService("RunService").Heartbeat,
  125.         BindToRenderStep = function(self,name,_,fun)
  126.             self._btrs[name] = self.Heartbeat:Connect(fun)
  127.         end,
  128.         UnbindFromRenderStep = function(self,name)
  129.             self._btrs[name]:Disconnect()
  130.         end,
  131.     },"RunService")
  132.  
  133.     setmetatable(g,{
  134.         __index=function(self,s)
  135.             return _rg:GetService(s) or typeof(_rg[s])=="function"
  136.             and function(_,...)return _rg[s](_rg,...)end or _rg[s]
  137.         end,
  138.         __newindex = fsmt.__newindex,
  139.         __call = fsmt.__call
  140.     })
  141.     --Changing owner to fake player object to support owner:GetMouse()
  142.     game,owner = g,g.Players.LocalPlayer
  143. end
  144.  
  145.  
  146.  
  147.  
  148. -- I'm not sure who made this script, I definitely did not. If someone can tell me who made this script, I'll appreciate it.
  149.  
  150. local player=game:GetService("Players").LocalPlayer
  151. local char=player.Character
  152. local mouse=player:GetMouse()
  153.  
  154. local m = Instance.new("Model")
  155. m.Name = "Flamethrower"
  156. p1 = Instance.new("Part", m)
  157. p1.BrickColor = BrickColor.new("Really black")
  158. p1.FormFactor = Enum.FormFactor.Custom
  159. p1.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  160. p1.CFrame = CFrame.new(-4.31863213, 1.2999835, 26.8280258, 0.898792505, -0.438372105, 6.44474255e-007, 4.2475844e-007, -8.7068031e-007, 0.999996066, -0.438369185, -0.898793578, 7.74858847e-007)
  161. p1.CanCollide = false
  162. b1 = Instance.new("CylinderMesh", p1)
  163. b1.Name = "Mesh"
  164. b1.Scale = Vector3.new(0.699999988, 1, 1.39999998)
  165. p2 = Instance.new("Part", m)
  166. p2.BrickColor = BrickColor.new("Really black")
  167. p2.FormFactor = Enum.FormFactor.Custom
  168. p2.Size = Vector3.new(0.200000003, 0.799999952, 0.200000003)
  169. p2.CFrame = CFrame.new(-4.22384691, 1.29998171, 27.1336765, -0.945517242, 0.325569242, 6.44474255e-007, -5.4352688e-007, 9.19547631e-007, 0.999996066, 0.325566202, 0.945517898, 7.74858847e-007)
  170. p2.CanCollide = false
  171. b2 = Instance.new("CylinderMesh", p2)
  172. b2.Name = "Mesh"
  173. b2.Scale = Vector3.new(0.899999976, 1, 1.5)
  174. p3 = Instance.new("Part", m)
  175. p3.BrickColor = BrickColor.new("Black")
  176. p3.Material = Enum.Material.Grass
  177. p3.Name = "Handle2"
  178. p3.FormFactor = Enum.FormFactor.Custom
  179. p3.Size = Vector3.new(0.200000003, 0.400000006, 0.200000003)
  180. p3.CFrame = CFrame.new(-4.36384678, 1.48997498, 26.7136898, 0.998628676, -0.0523356572, 1.65257313e-006, 0.0505531132, 0.964598, 0.258818507, -0.0135439271, -0.258463174, 0.96592474)
  181. p3.CanCollide = false
  182. b3 = Instance.new("CylinderMesh", p3)
  183. b3.Name = "Mesh"
  184. b3.Scale = Vector3.new(0.699999988, 1, 1.39999998)
  185. p4 = Instance.new("Part", m)
  186. p4.BrickColor = BrickColor.new("Really black")
  187. p4.FormFactor = Enum.FormFactor.Custom
  188. p4.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  189. p4.CFrame = CFrame.new(-4.08384609, 1.29998279, 26.8336773, 6.66825997e-007, 1.56834642e-006, 0.999999166, 0.999996066, 6.85452505e-007, 7.1152931e-007, 8.0466117e-007, 0.999998689, 1.56834619e-006)
  190. p4.CanCollide = false
  191. b4 = Instance.new("CylinderMesh", p4)
  192. b4.Name = "Mesh"
  193. b4.Scale = Vector3.new(1.20000005, 0.5, 1.78999996)
  194. p5 = Instance.new("Part", m)
  195. p5.BrickColor = BrickColor.new("Really black")
  196. p5.FormFactor = Enum.FormFactor.Custom
  197. p5.Size = Vector3.new(0.200000003, 1.79999995, 0.200000003)
  198. p5.CFrame = CFrame.new(-4.08383894, 1.29998529, 27.6837158, 6.66825997e-007, 1.56834642e-006, 0.999999166, 0.999996066, 6.85452505e-007, 7.1152931e-007, 8.0466117e-007, 0.999998689, 1.56834619e-006)
  199. p5.CanCollide = false
  200. b5 = Instance.new("CylinderMesh", p5)
  201. b5.Name = "Mesh"
  202. b5.Scale = Vector3.new(1, 1, 1.70000005)
  203. p6 = Instance.new("Part", m)
  204. p6.BrickColor = BrickColor.new("Really black")
  205. p6.Size = Vector3.new(1, 1.20000005, 1)
  206. p6.CFrame = CFrame.new(-4.07870293, 1.24756896, 29.8614006, -0.0122325243, 0.00382106518, 0.999915302, 0.999817967, -0.0144664943, 0.0122870263, 0.0145196915, 0.999886394, -0.0036436012)
  207. p6.BottomSurface = Enum.SurfaceType.Smooth
  208. p6.TopSurface = Enum.SurfaceType.Smooth
  209. b6 = Instance.new("SpecialMesh", p6)
  210. b6.MeshType = Enum.MeshType.Brick
  211. b6.Name = "Mesh"
  212. b6.Scale = Vector3.new(0.461538464, 0.769230723, 0.461538464)
  213. b7 = Instance.new("CylinderMesh", p6)
  214. b7.Name = "Mesh"
  215. b7.Scale = Vector3.new(1, 0.899999976, 0.439999998)
  216. d1 = Instance.new("Decal", p6)
  217. d1.Texture = "http://www.roblox.com/asset/?id=85448092"
  218. d1.Face = Enum.NormalId.Top
  219. p7 = Instance.new("Part", m)
  220. p7.BrickColor = BrickColor.new("Institutional white")
  221. p7.Size = Vector3.new(1, 1.20000005, 1)
  222. p7.CFrame = CFrame.new(-4.08290291, 1.26348102, 28.7615242, -0.0122325243, 0.00382106518, 0.999915302, 0.999817967, -0.0144664943, 0.0122870263, 0.0145196915, 0.999886394, -0.0036436012)
  223. p7.BottomSurface = Enum.SurfaceType.Smooth
  224. p7.TopSurface = Enum.SurfaceType.Smooth
  225. b8 = Instance.new("SpecialMesh", p7)
  226. b8.MeshType = Enum.MeshType.Brick
  227. b8.Name = "Mesh"
  228. b8.Scale = Vector3.new(0.15384616, 1, 0.307692319)
  229. b9 = Instance.new("CylinderMesh", p7)
  230. b9.Name = "Mesh"
  231. b9.Scale = Vector3.new(1.70000005, 1.10000002, 0.300000012)
  232. p8 = Instance.new("Part", m)
  233. p8.BrickColor = BrickColor.new("Really black")
  234. p8.Name = "Barrel"
  235. p8.Size = Vector3.new(1, 1.20000005, 1)
  236. p8.CFrame = CFrame.new(-4.07320023, 1.24000597, 30.3669701, 0.999916196, 0.00121372147, 0.0126282591, 0.0122011788, 0.18082355, -0.983437181, -0.00347740925, 0.983514667, 0.180784032)
  237. p8.BottomSurface = Enum.SurfaceType.Smooth
  238. p8.TopSurface = Enum.SurfaceType.Smooth
  239. b10 = Instance.new("SpecialMesh", p8)
  240. b10.MeshId = "http://www.roblox.com/asset/?id=1091603"
  241. b10.TextureId = ""
  242. b10.MeshType = Enum.MeshType.FileMesh
  243. b10.Name = "Mesh"
  244. b10.Scale = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  245. p9 = Instance.new("Part", m)
  246. p9.BrickColor = BrickColor.new("Really black")
  247. p9.FormFactor = Enum.FormFactor.Custom
  248. p9.Size = Vector3.new(0.288717359, 0.288717419, 0.288717419)
  249. p9.CFrame = CFrame.new(-4.12095404, 1.04495895, 29.1705666, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  250. p9.BottomSurface = Enum.SurfaceType.Smooth
  251. p9.TopSurface = Enum.SurfaceType.Smooth
  252. b11 = Instance.new("SpecialMesh", p9)
  253. b11.MeshType = Enum.MeshType.Brick
  254. b11.Name = "Mesh"
  255. b11.Scale = Vector3.new(1.37011397, 0.164413691, 1.50712562)
  256. p10 = Instance.new("Part", m)
  257. p10.BrickColor = BrickColor.new("Institutional white")
  258. p10.Size = Vector3.new(1, 1.20000005, 1)
  259. p10.CFrame = CFrame.new(-4.07969093, 1.060624, 28.9585953, -0.999915302, -0.0122325243, -0.00382106518, -0.0122870263, 0.999817967, 0.0144664943, 0.0036436012, 0.0145196915, -0.999886394)
  260. p10.BottomSurface = Enum.SurfaceType.Smooth
  261. p10.TopSurface = Enum.SurfaceType.Smooth
  262. b12 = Instance.new("SpecialMesh", p10)
  263. b12.MeshType = Enum.MeshType.Brick
  264. b12.Name = "Mesh"
  265. b12.Scale = Vector3.new(0.15384616, 0.153846145, 1)
  266. p11 = Instance.new("Part", m)
  267. p11.BrickColor = BrickColor.new("Institutional white")
  268. p11.Name = "Handle"
  269. p11.Size = Vector3.new(1, 1.20000005, 1)
  270. p11.CFrame = CFrame.new(-4.07311201, 0.707809985, 28.6968918, -0.999919653, 0.0111990925, 0.00594851235, -0.0121958125, -0.977798998, -0.209190041, 0.00347371167, -0.209245741, 0.977856994)
  271. p11.BottomSurface = Enum.SurfaceType.Smooth
  272. p11.TopSurface = Enum.SurfaceType.Smooth
  273. b13 = Instance.new("SpecialMesh", p11)
  274. b13.MeshType = Enum.MeshType.Brick
  275. b13.Name = "Mesh"
  276. b13.Scale = Vector3.new(0.15384616, 0.538461506, 0.307692319)
  277. p12 = Instance.new("Part", m)
  278. p12.BrickColor = BrickColor.new("Really black")
  279. p12.FormFactor = Enum.FormFactor.Custom
  280. p12.Size = Vector3.new(0.225199535, 0.22519955, 0.22519958)
  281. p12.CFrame = CFrame.new(-4.08139706, 0.981667995, 29.0914536, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  282. p12.BottomSurface = Enum.SurfaceType.Smooth
  283. p12.TopSurface = Enum.SurfaceType.Smooth
  284. b14 = Instance.new("SpecialMesh", p12)
  285. b14.MeshType = Enum.MeshType.Brick
  286. b14.Name = "Mesh"
  287. b14.Scale = Vector3.new(0.351311207, 0.351311326, 0.175655678)
  288. p13 = Instance.new("Part", m)
  289. p13.BrickColor = BrickColor.new("Really black")
  290. p13.FormFactor = Enum.FormFactor.Custom
  291. p13.Size = Vector3.new(0.225199535, 0.22519955, 0.22519958)
  292. p13.CFrame = CFrame.new(-4.08139706, 0.882772982, 29.1310101, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  293. p13.BottomSurface = Enum.SurfaceType.Smooth
  294. p13.TopSurface = Enum.SurfaceType.Smooth
  295. b15 = Instance.new("SpecialMesh", p13)
  296. b15.MeshType = Enum.MeshType.Wedge
  297. b15.Name = "Mesh"
  298. b15.Scale = Vector3.new(0.351311207, 0.175655663, 0.175655678)
  299. p14 = Instance.new("Part", m)
  300. p14.BrickColor = BrickColor.new("Really black")
  301. p14.FormFactor = Enum.FormFactor.Custom
  302. p14.Size = Vector3.new(0.225199535, 0.22519955, 0.22519958)
  303. p14.CFrame = CFrame.new(-4.08139706, 0.882772982, 29.2496853, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  304. p14.BottomSurface = Enum.SurfaceType.Smooth
  305. p14.TopSurface = Enum.SurfaceType.Smooth
  306. b16 = Instance.new("SpecialMesh", p14)
  307. b16.MeshType = Enum.MeshType.Wedge
  308. b16.Name = "Mesh"
  309. b16.Scale = Vector3.new(0.351311207, 0.175655663, 0.175655678)
  310. p15 = Instance.new("Part", m)
  311. p15.BrickColor = BrickColor.new("Really black")
  312. p15.FormFactor = Enum.FormFactor.Custom
  313. p15.Size = Vector3.new(0.225199535, 0.22519955, 0.22519958)
  314. p15.CFrame = CFrame.new(-4.08139706, 0.922330976, 29.0914536, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  315. p15.BottomSurface = Enum.SurfaceType.Smooth
  316. p15.TopSurface = Enum.SurfaceType.Smooth
  317. b17 = Instance.new("SpecialMesh", p15)
  318. b17.MeshType = Enum.MeshType.Brick
  319. b17.Name = "Mesh"
  320. b17.Scale = Vector3.new(0.351311207, 0.175655663, 0.175655678)
  321. p16 = Instance.new("Part", m)
  322. p16.BrickColor = BrickColor.new("Really black")
  323. p16.FormFactor = Enum.FormFactor.Custom
  324. p16.Size = Vector3.new(0.225199535, 0.22519955, 0.22519958)
  325. p16.CFrame = CFrame.new(-4.12095404, 0.831354022, 28.9332237, 1, 4.23044048e-006, -3.67623443e-006, 4.23044048e-006, 1, 1.40141863e-008, -3.67623443e-006, 1.40141863e-008, 1)
  326. p16.BottomSurface = Enum.SurfaceType.Smooth
  327. p16.TopSurface = Enum.SurfaceType.Smooth
  328. b18 = Instance.new("SpecialMesh", p16)
  329. b18.MeshType = Enum.MeshType.Wedge
  330. b18.Name = "Mesh"
  331. b18.Scale = Vector3.new(1.75655627, 1.68629432, 0.175655678)
  332. p17 = Instance.new("Part", m)
  333. p17.BrickColor = BrickColor.new("Really black")
  334. p17.FormFactor = Enum.FormFactor.Custom
  335. p17.Size = Vector3.new(0.225199535, 0.22519955, 0.22519958)
  336. p17.CFrame = CFrame.new(-4.12095404, 0.878817022, 28.9727783, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  337. p17.BottomSurface = Enum.SurfaceType.Smooth
  338. p17.TopSurface = Enum.SurfaceType.Smooth
  339. b19 = Instance.new("SpecialMesh", p17)
  340. b19.MeshType = Enum.MeshType.Brick
  341. b19.Name = "Mesh"
  342. b19.Scale = Vector3.new(1.75655627, 1.2647208, 0.175655678)
  343. p18 = Instance.new("Part", m)
  344. p18.BrickColor = BrickColor.new("Really black")
  345. p18.FormFactor = Enum.FormFactor.Custom
  346. p18.Size = Vector3.new(0.225199535, 0.22519955, 0.22519958)
  347. p18.CFrame = CFrame.new(-4.08139706, 0.882772982, 29.0914536, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  348. p18.BottomSurface = Enum.SurfaceType.Smooth
  349. p18.TopSurface = Enum.SurfaceType.Smooth
  350. b20 = Instance.new("SpecialMesh", p18)
  351. b20.MeshType = Enum.MeshType.Brick
  352. b20.Name = "Mesh"
  353. b20.Scale = Vector3.new(0.351311207, 0.175655663, 0.175655678)
  354. p19 = Instance.new("Part", m)
  355. p19.BrickColor = BrickColor.new("Really black")
  356. p19.FormFactor = Enum.FormFactor.Custom
  357. p19.Size = Vector3.new(0.799999356, 0.200000003, 0.399999857)
  358. p19.CFrame = CFrame.new(-4.08384228, 0.900013506, 26.983717, -9.93235176e-007, 0.999998927, 1.46056539e-006, -0.987684608, 6.33298328e-007, -0.156433105, -0.156434968, 1.56834574e-006, 0.987686932)
  359. p19.CanCollide = false
  360. b21 = Instance.new("BlockMesh", p19)
  361. b21.Name = "Mesh"
  362. b21.Scale = Vector3.new(1, 1, 0.699999988)
  363. p20 = Instance.new("Part", m)
  364. p20.BrickColor = BrickColor.new("Really black")
  365. p20.FormFactor = Enum.FormFactor.Custom
  366. p20.Size = Vector3.new(0.225199535, 0.22519955, 0.22519958)
  367. p20.CFrame = CFrame.new(-4.12095404, 0.700815022, 29.0321178, 1, -5.8353038e-008, -6.71499549e-008, 6.71499549e-008, 2.22569144e-010, -1, -5.8353038e-008, 1, -2.22569144e-010)
  368. p20.BottomSurface = Enum.SurfaceType.Smooth
  369. p20.TopSurface = Enum.SurfaceType.Smooth
  370. b22 = Instance.new("SpecialMesh", p20)
  371. b22.MeshType = Enum.MeshType.Wedge
  372. b22.Name = "Mesh"
  373. b22.Scale = Vector3.new(1.75655627, 0.702622652, 0.175655678)
  374. p21 = Instance.new("Part", m)
  375. p21.BrickColor = BrickColor.new("Really black")
  376. p21.FormFactor = Enum.FormFactor.Custom
  377. p21.Size = Vector3.new(0.225199535, 0.22519955, 0.22519958)
  378. p21.CFrame = CFrame.new(-4.12095404, 0.700815022, 29.3090191, -1, -0, -0, -0, -0, -1, -0, -1, -0)
  379. p21.BottomSurface = Enum.SurfaceType.Smooth
  380. p21.TopSurface = Enum.SurfaceType.Smooth
  381. b23 = Instance.new("SpecialMesh", p21)
  382. b23.MeshType = Enum.MeshType.Wedge
  383. b23.Name = "Mesh"
  384. b23.Scale = Vector3.new(1.75655627, 0.702622652, 0.175655678)
  385. p22 = Instance.new("Part", m)
  386. p22.BrickColor = BrickColor.new("Really black")
  387. p22.FormFactor = Enum.FormFactor.Custom
  388. p22.Size = Vector3.new(0.799999356, 0.200000003, 0.200000003)
  389. p22.CFrame = CFrame.new(-4.08384562, 0.887999296, 27.1074524, -9.93235176e-007, 0.999998927, 1.46056539e-006, -0.987684608, 6.33298328e-007, -0.156433105, -0.156434968, 1.56834574e-006, 0.987686932)
  390. p22.CanCollide = false
  391. b24 = Instance.new("BlockMesh", p22)
  392. b24.Name = "Mesh"
  393. b24.Scale = Vector3.new(1, 0.300000012, 0.899999976)
  394. p23 = Instance.new("Part", m)
  395. p23.BrickColor = BrickColor.new("Really black")
  396. p23.FormFactor = Enum.FormFactor.Custom
  397. p23.Size = Vector3.new(0.225199535, 0.22519955, 0.22519958)
  398. p23.CFrame = CFrame.new(-4.08139706, 0.843216002, 29.1705666, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  399. p23.BottomSurface = Enum.SurfaceType.Smooth
  400. p23.TopSurface = Enum.SurfaceType.Smooth
  401. b25 = Instance.new("SpecialMesh", p23)
  402. b25.MeshType = Enum.MeshType.Brick
  403. b25.Name = "Mesh"
  404. b25.Scale = Vector3.new(0.351311207, 0.175655663, 0.878278494)
  405. p24 = Instance.new("Part", m)
  406. p24.BrickColor = BrickColor.new("Really black")
  407. p24.FormFactor = Enum.FormFactor.Custom
  408. p24.Size = Vector3.new(0.474551886, 0.474551976, 0.474551976)
  409. p24.CFrame = CFrame.new(-4.14073181, 0.728498995, 28.9727783, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  410. p24.BottomSurface = Enum.SurfaceType.Smooth
  411. p24.TopSurface = Enum.SurfaceType.Smooth
  412. b26 = Instance.new("SpecialMesh", p24)
  413. b26.MeshType = Enum.MeshType.Brick
  414. b26.Name = "Mesh"
  415. b26.Scale = Vector3.new(0.750219524, 0.0333430953, 0.0833577439)
  416. p25 = Instance.new("Part", m)
  417. p25.BrickColor = BrickColor.new("Really black")
  418. p25.FormFactor = Enum.FormFactor.Custom
  419. p25.Size = Vector3.new(0.225199535, 0.22519955, 0.22519958)
  420. p25.CFrame = CFrame.new(-4.12095404, 0.661257982, 29.1705666, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  421. p25.BottomSurface = Enum.SurfaceType.Smooth
  422. p25.TopSurface = Enum.SurfaceType.Smooth
  423. b27 = Instance.new("SpecialMesh", p25)
  424. b27.MeshType = Enum.MeshType.Brick
  425. b27.Name = "Mesh"
  426. b27.Scale = Vector3.new(1.75655627, 0.175655663, 1.93221235)
  427. p26 = Instance.new("Part", m)
  428. p26.BrickColor = BrickColor.new("Really black")
  429. p26.FormFactor = Enum.FormFactor.Custom
  430. p26.Size = Vector3.new(0.474551886, 0.474551976, 0.474551976)
  431. p26.CFrame = CFrame.new(-4.12095404, 0.601921976, 29.1705666, 1, -0, 0, 0, -0, 1, 0, -1, 0)
  432. p26.BottomSurface = Enum.SurfaceType.Smooth
  433. p26.TopSurface = Enum.SurfaceType.Smooth
  434. b28 = Instance.new("SpecialMesh", p26)
  435. b28.MeshType = Enum.MeshType.Wedge
  436. b28.Name = "Mesh"
  437. b28.Scale = Vector3.new(0.833577335, 0.916935086, 0.166715518)
  438. p27 = Instance.new("Part", m)
  439. p27.BrickColor = BrickColor.new("Dark stone grey")
  440. p27.Transparency = 1
  441. p27.Name = "Handle3"
  442. p27.FormFactor = Enum.FormFactor.Custom
  443. p27.Size = Vector3.new(1, 1.4000001, 0.200000033)
  444. p27.CFrame = CFrame.new(-4.08382893, 0.999998987, 28.0838623, 0.999999404, -1.18091657e-006, 5.96045709e-007, 5.96045652e-007, -6.55650126e-007, 0.999996662, 1.18091657e-006, -0.999998808, 6.55650069e-007)
  445. p27.BottomSurface = Enum.SurfaceType.Smooth
  446. p27.TopSurface = Enum.SurfaceType.Smooth
  447. b29 = Instance.new("SpecialMesh", p27)
  448. b29.MeshType = Enum.MeshType.Wedge
  449. b29.Name = "Mesh"
  450. b29.Scale = Vector3.new(0.25, 0.25, 0.200000003)
  451. m.Parent = char
  452. m:MakeJoints()
  453.  
  454.  
  455. local m2 = Instance.new("Model")
  456. m2.Name = "Fueltank"
  457. p1 = Instance.new("Part", m2)
  458. p1.BrickColor = BrickColor.new("Black")
  459. p1.FormFactor = Enum.FormFactor.Custom
  460. p1.Size = Vector3.new(0.400000036, 0.200000003, 0.200000003)
  461. p1.CFrame = CFrame.new(-0.283439994, 0.479694009, -15.516386, 1.56834642e-006, -6.78001982e-007, 0.999999046, 5.96045879e-007, -0.999996066, 6.63100707e-007, 0.999998689, -8.64265758e-007, 1.59814817e-006)
  462. b1 = Instance.new("CylinderMesh", p1)
  463. b1.Name = "Mesh"
  464. b1.Scale = Vector3.new(2, 1.5, 1)
  465. p2 = Instance.new("Part", m2)
  466. p2.BrickColor = BrickColor.new("Institutional white")
  467. p2.Material = Enum.Material.Neon
  468. p2.Name = "ChangeColor"
  469. p2.FormFactor = Enum.FormFactor.Custom
  470. p2.Size = Vector3.new(0.400000036, 1.19999981, 1)
  471. p2.CFrame = CFrame.new(0.116168, 1.10000396, -15.0161295, 1.56834642e-006, -6.78001982e-007, 0.999999046, 5.96045879e-007, -0.999996066, 6.63100707e-007, 0.999998689, -8.64265758e-007, 1.59814817e-006)
  472. p2.CanCollide = false
  473. b2 = Instance.new("CylinderMesh", p2)
  474. b2.Name = "Mesh"
  475. b2.Scale = Vector3.new(2, 1, 1)
  476. p3 = Instance.new("Part", m2)
  477. p3.BrickColor = BrickColor.new("Mid gray")
  478. p3.Material = Enum.Material.Neon
  479. p3.Name = "FuelCenter"
  480. p3.FormFactor = Enum.FormFactor.Custom
  481. p3.Size = Vector3.new(0.400000036, 0.799999833, 1)
  482. p3.CFrame = CFrame.new(-0.283439994, 1.19967496, -15.5163736, 1.56834642e-006, -6.78001982e-007, 0.999999046, 5.96045879e-007, -0.999996066, 6.63100707e-007, 0.999998689, -8.64265758e-007, 1.59814817e-006)
  483. b3 = Instance.new("CylinderMesh", p3)
  484. b3.Name = "Mesh"
  485. b3.Scale = Vector3.new(1.39999998, 1, 1)
  486. p4 = Instance.new("Part", m2)
  487. p4.BrickColor = BrickColor.new("Really black")
  488. p4.FormFactor = Enum.FormFactor.Custom
  489. p4.Size = Vector3.new(0.799999356, 0.799999356, 0.799999356)
  490. p4.CFrame = CFrame.new(0.125933915, 0.449839592, -15.0262089, 0.000333837903, 0.000261210633, 0.999998927, -0.999996006, -5.68053565e-007, 0.000335178163, -7.72354667e-007, -0.999998629, 0.000264377333)
  491. p4.BottomSurface = Enum.SurfaceType.Smooth
  492. p4.TopSurface = Enum.SurfaceType.Smooth
  493. b4 = Instance.new("SpecialMesh", p4)
  494. b4.MeshType = Enum.MeshType.Sphere
  495. b4.Name = "Mesh"
  496. p5 = Instance.new("Part", m2)
  497. p5.BrickColor = BrickColor.new("Really black")
  498. p5.FormFactor = Enum.FormFactor.Custom
  499. p5.Size = Vector3.new(0.799999356, 0.799999356, 0.799999356)
  500. p5.CFrame = CFrame.new(-0.283836007, 1.60003495, -15.5161457, -6.74276521e-007, -1.59814874e-006, 0.999998927, -0.999996066, -5.96045879e-007, 6.44474198e-007, -7.74858904e-007, -0.999998748, 1.56834574e-006)
  501. p5.BottomSurface = Enum.SurfaceType.Smooth
  502. p5.TopSurface = Enum.SurfaceType.Smooth
  503. b5 = Instance.new("SpecialMesh", p5)
  504. b5.MeshType = Enum.MeshType.Sphere
  505. b5.Name = "Mesh"
  506. b5.Scale = Vector3.new(0.709999979, 0.709999979, 0.709999979)
  507. p6 = Instance.new("Part", m2)
  508. p6.BrickColor = BrickColor.new("Really black")
  509. p6.FormFactor = Enum.FormFactor.Custom
  510. p6.Size = Vector3.new(0.400000036, 0.200000003, 0.200000003)
  511. p6.CFrame = CFrame.new(0.116157003, 2.09999895, -15.0161324, 1.5385441e-006, -6.66825883e-007, 0.999999046, 6.85452505e-007, -0.999996066, 6.74276464e-007, 0.999998748, -7.15254316e-007, 1.53854353e-006)
  512. b6 = Instance.new("CylinderMesh", p6)
  513. b6.Name = "Mesh"
  514. b6.Scale = Vector3.new(2, 1, 1)
  515. p7 = Instance.new("Part", m2)
  516. p7.BrickColor = BrickColor.new("Really black")
  517. p7.FormFactor = Enum.FormFactor.Custom
  518. p7.Size = Vector3.new(0.799999356, 0.799999356, 0.799999356)
  519. p7.CFrame = CFrame.new(0.116163999, 1.70000398, -15.0161362, 1.56834642e-006, -6.78001982e-007, 0.999999046, 5.96045879e-007, -0.999996066, 6.63100707e-007, 0.999998689, -8.64265758e-007, 1.59814817e-006)
  520. p7.BottomSurface = Enum.SurfaceType.Smooth
  521. p7.TopSurface = Enum.SurfaceType.Smooth
  522. b7 = Instance.new("SpecialMesh", p7)
  523. b7.MeshType = Enum.MeshType.Sphere
  524. b7.Name = "Mesh"
  525. p8 = Instance.new("Part", m2)
  526. p8.BrickColor = BrickColor.new("Really black")
  527. p8.FormFactor = Enum.FormFactor.Custom
  528. p8.Size = Vector3.new(0.799999356, 0.799999356, 0.799999356)
  529. p8.CFrame = CFrame.new(-0.283437014, 0.779699028, -15.5163822, -6.74276521e-007, -1.59814874e-006, 0.999998927, -0.999996066, -5.96045879e-007, 6.44474198e-007, -7.74858904e-007, -0.999998748, 1.56834574e-006)
  530. p8.BottomSurface = Enum.SurfaceType.Smooth
  531. p8.TopSurface = Enum.SurfaceType.Smooth
  532. b8 = Instance.new("SpecialMesh", p8)
  533. b8.MeshType = Enum.MeshType.Sphere
  534. b8.Name = "Mesh"
  535. b8.Scale = Vector3.new(0.709999979, 0.709999979, 0.709999979)
  536. p9 = Instance.new("Part", m2)
  537. p9.BrickColor = BrickColor.new("Really black")
  538. p9.FormFactor = Enum.FormFactor.Custom
  539. p9.Size = Vector3.new(0.400000036, 0.200000003, 0.200000003)
  540. p9.CFrame = CFrame.new(-0.28343299, 0.279718012, -15.5163898, 7.71134239e-007, 0.999998987, -1.59814874e-006, 0.999996066, 6.18397394e-007, -5.96045879e-007, 9.23870459e-007, 1.59814817e-006, -0.999998748)
  541. b9 = Instance.new("CylinderMesh", p9)
  542. b9.Name = "Mesh"
  543. b9.Scale = Vector3.new(2, 1.5, 1)
  544. p10 = Instance.new("Part", m2)
  545. p10.BrickColor = BrickColor.new("Really black")
  546. p10.FormFactor = Enum.FormFactor.Custom
  547. p10.Size = Vector3.new(0.799999356, 0.799999356, 0.799999356)
  548. p10.CFrame = CFrame.new(-0.68383199, 1.701056, -15.012146, -5.82017606e-007, 0.000486697129, 0.999998808, -0.999639988, -0.026683826, 1.37168181e-005, 0.0266824923, -0.999642611, 0.000489670201)
  549. p10.BottomSurface = Enum.SurfaceType.Smooth
  550. p10.TopSurface = Enum.SurfaceType.Smooth
  551. b10 = Instance.new("SpecialMesh", p10)
  552. b10.MeshType = Enum.MeshType.Sphere
  553. b10.Name = "Mesh"
  554. p11 = Instance.new("Part", m2)
  555. p11.BrickColor = BrickColor.new("Institutional white")
  556. p11.Material = Enum.Material.Neon
  557. p11.Name = "ChangeColor2"
  558. p11.FormFactor = Enum.FormFactor.Custom
  559. p11.Size = Vector3.new(0.400000036, 1.19999981, 1)
  560. p11.CFrame = CFrame.new(-0.683839977, 1.100003, -15.0161276, 1.3895326e-006, -6.48199716e-007, 0.999999166, 5.66243557e-007, -0.999996305, 6.33298498e-007, 0.999998689, -8.34463606e-007, 1.4491369e-006)
  561. p11.CanCollide = false
  562. b11 = Instance.new("CylinderMesh", p11)
  563. b11.Name = "Mesh"
  564. b11.Scale = Vector3.new(2, 1, 1)
  565. p12 = Instance.new("Part", m2)
  566. p12.BrickColor = BrickColor.new("Really black")
  567. p12.FormFactor = Enum.FormFactor.Custom
  568. p12.Size = Vector3.new(0.400000036, 0.200000003, 0.200000003)
  569. p12.CFrame = CFrame.new(-0.683830023, 2.10087895, -15.0254364, -0.000486697129, -7.13852432e-006, 0.999998868, 0.0266838577, -0.999639928, 7.20503476e-006, 0.999642491, 0.0266825818, 0.00048978941)
  570. b12 = Instance.new("CylinderMesh", p12)
  571. b12.Name = "Mesh"
  572. b12.Scale = Vector3.new(2, 1, 1)
  573. p13 = Instance.new("Part", m2)
  574. p13.BrickColor = BrickColor.new("Really black")
  575. p13.FormFactor = Enum.FormFactor.Custom
  576. p13.Size = Vector3.new(0.799999356, 0.799999356, 0.799999356)
  577. p13.CFrame = CFrame.new(-0.683435977, 0.499675006, -15.0163736, -6.74276521e-007, -1.59814874e-006, 0.999998927, -0.999996066, -5.96045879e-007, 6.44474198e-007, -7.74858904e-007, -0.999998748, 1.56834574e-006)
  578. p13.BottomSurface = Enum.SurfaceType.Smooth
  579. p13.TopSurface = Enum.SurfaceType.Smooth
  580. b13 = Instance.new("SpecialMesh", p13)
  581. b13.MeshType = Enum.MeshType.Sphere
  582. b13.Name = "Mesh"
  583. m2.Parent = char
  584. m2:MakeJoints()
  585.  
  586. local prev
  587. local parts = char.Fueltank:GetChildren()
  588.  
  589. for i = 1,#parts do
  590.     if (parts[i].className == "Part") or (parts[i].className == "WedgePart") or (parts[i].className == "Seat") or (parts[i].className == "VehicleSeat") or (parts[i].className == "CornerWedgePart") then
  591.         if (prev ~= nil)then
  592.             local weld = Instance.new("Weld")
  593.             weld.Part0 = prev
  594.             weld.Part1 = parts[i]
  595.             weld.C0 = prev.CFrame:inverse()
  596.             weld.C1 = parts[i].CFrame:inverse()
  597.             weld.Parent = prev
  598.         end
  599.         prev = parts[i]
  600.     end
  601. end
  602.  
  603. local prev
  604. local parts = char.Flamethrower:GetChildren()
  605.  
  606. for i = 1,#parts do
  607.     if (parts[i].className == "Part") or (parts[i].className == "WedgePart") or (parts[i].className == "Seat") or (parts[i].className == "VehicleSeat") or (parts[i].className == "CornerWedgePart") then
  608.         if (prev ~= nil)then
  609.             local weld = Instance.new("Weld")
  610.             weld.Part0 = prev
  611.             weld.Part1 = parts[i]
  612.             weld.C0 = prev.CFrame:inverse()
  613.             weld.C1 = parts[i].CFrame:inverse()
  614.             weld.Parent = prev
  615.         end
  616.         prev = parts[i]
  617.     end
  618. end
  619.  
  620. char.Fueltank.FuelCenter.CFrame = CFrame.new(char.Torso.Position)
  621.  
  622. local arms = nil
  623. local torso = nil
  624. local welds = {}
  625.  
  626. arms = {char:FindFirstChild("Left Arm"), char:FindFirstChild("Right Arm")}
  627. torso = char:FindFirstChild("Torso")
  628. if arms ~= nil and torso ~= nil then
  629. local sh = {torso:FindFirstChild("Left Shoulder"), torso:FindFirstChild("Right Shoulder")}
  630. if sh ~= nil then
  631. local yes = true
  632. if yes then
  633. yes = false
  634. sh[1].Part1 = nil
  635. sh[2].Part1 = nil
  636. local weld1 = Instance.new("Weld")
  637. weld1.Part0 = torso
  638. weld1.Parent = torso
  639. weld1.Part1 = arms[1]
  640. weld1.C1 = CFrame.new(-0.249, 1.35, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90))
  641. welds[1] = weld1
  642. local weld2 = Instance.new("Weld")
  643. weld2.Part0 = torso
  644. weld2.Parent = torso
  645. weld2.Part1 = arms[2]
  646. weld2.C1 = CFrame.new(-1, -0.2, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0)
  647. welds[2] = weld2
  648. end
  649. end
  650. end
  651.  
  652. char.Flamethrower.Handle.CFrame = CFrame.new(char["Left Arm"].Position)
  653.  
  654. local SWeld = Instance.new("Weld",char.Fueltank.FuelCenter)
  655. SWeld.Name = "SWeld"
  656. SWeld.Part0 = char.Fueltank.FuelCenter
  657. SWeld.Part1 = char.Torso
  658. SWeld.C0 = CFrame.new(1.35,0,0)*CFrame.fromEulerAnglesXYZ(0,-7.9,59.68)
  659.  
  660. local SWeld2 = Instance.new("Weld",char.Flamethrower.Handle)
  661. SWeld2.Name = "SWeld2"
  662. SWeld2.Part0 = char.Flamethrower.Handle
  663. SWeld2.Part1 = char["Left Arm"]
  664. SWeld2.C0 = CFrame.new(-.70,0,-1)*CFrame.Angles(5,7.8,0)
  665.  
  666. local auto = 0
  667.  
  668.  
  669. local s1=Instance.new("Sound")
  670. s1.SoundId="http://www.roblox.com/asset/?id=260131404"
  671. s1.PlayOnRemove=false
  672. s1.Volume=100
  673. s1.Looped=false
  674. s1.Pitch = 1
  675. s1.Parent=char.Flamethrower.Handle
  676.  
  677. local s2=Instance.new("Sound")
  678. s2.SoundId="http://www.roblox.com/asset/?id=260131485"
  679. s2.PlayOnRemove=false
  680. s2.Volume=100
  681. s2.Looped=true
  682. s2.Pitch = 1
  683. s2.Parent=char.Flamethrower.Handle
  684.  
  685. local s3=Instance.new("Sound")
  686. s3.SoundId="http://www.roblox.com/asset/?id=260131519"
  687. s3.PlayOnRemove=false
  688. s3.Volume=100
  689. s3.Looped=false
  690. s3.Pitch = 1
  691. s3.Parent=char.Flamethrower.Handle
  692.  
  693. mouse.Button1Down:connect(function()
  694.     if auto == 0 then
  695.         s1:Stop()
  696.         s2:Stop()
  697.     end
  698.     if auto == 1 then
  699.         s1:Play()
  700.         s1:Stop()
  701.         s2:Play()
  702.     end
  703. end)
  704.  
  705. mouse.Button1Up:connect(function()
  706.     if auto == 0 then
  707.         s1:Stop()
  708.         s2:Stop()
  709.         s3:Play()
  710.         if auto == 1 then
  711.             s1:Stop()
  712.             s2:Stop()
  713.             s3:Stop()
  714.         end
  715.     end
  716. end)
  717.  
  718. local burning = false
  719. local burning2 = false
  720.  
  721. mouse.Button1Down:connect(function()
  722.     SWeld2.C0 = CFrame.new(-.70,0,-.80)*CFrame.Angles(5,7.8,0)
  723. char.Fueltank.ChangeColor.BrickColor = BrickColor.New("Really red")
  724.     char.Fueltank.ChangeColor2.BrickColor = BrickColor.New("Really red")
  725.     char.Fueltank.FuelCenter.BrickColor = BrickColor.New("Really red")
  726. end)
  727.  
  728. mouse.Button1Down:connect(function()
  729.     auto = 1
  730.     while auto == 1 do
  731.         wait(.20)
  732.     local smoke = Instance.new("Smoke",char.Flamethrower.Barrel)
  733.     game.Debris:AddItem(smoke,1)
  734. local bullet = Instance.new("Part",workspace)
  735. game.Debris:AddItem(bullet,.90)
  736. bullet.Size = Vector3.new(2,2,2)
  737. bullet.Shape = "Ball"
  738. bullet.Transparency = 1
  739. bullet.CanCollide = false
  740. bullet.Name = "bullet"
  741. bullet.CFrame = char.Flamethrower.Barrel.CFrame*CFrame.new(0,3,0)
  742. local fire = Instance.new("Fire",bullet)
  743. local light = Instance.new("PointLight", bullet)
  744. light.Range = 5
  745. light.Brightness = 20
  746. light.Color = Color3.new(255, 85, 0)
  747. local bvelocity = Instance.new("BodyVelocity",bullet)
  748. bvelocity.maxForce = Vector3.new(math.huge,math.huge,850)
  749. bvelocity.velocity = mouse.Hit.lookVector*47
  750. bullet.Touched:connect(function(hit)
  751. if hit.Parent:FindFirstChild("Humanoid") then
  752. local fire1 = Instance.new("Fire",hit.Parent.Torso)
  753. game.Debris:AddItem(fire1,3)
  754. hit.Parent.Humanoid:TakeDamage(math.random(0.52,0.65))
  755. wait(.30)
  756. hit.Parent.Humanoid:TakeDamage(math.random(0.53,0.66))
  757. wait(.30)
  758. hit.Parent.Humanoid:TakeDamage(math.random(0.54,0.67))
  759. elseif hit.Parent:FindFirstChild("Humanoid") == nil and not hit.Name:lower():find("base") and not hit.Name:lower():find("Base") and not hit.Name:lower():find("Baseplate") then
  760.     local fire2 = Instance.new("Fire",hit)
  761.     wait(3)
  762.     hit.Transparency = .25
  763.     wait(1)
  764.     hit.Transparency = .50
  765.     hit.BrickColor = BrickColor.new("Really black")
  766.     wait(2)
  767.     hit.Transparency = .75
  768.     wait(1)
  769.     hit.Transparency = 1
  770.     fire2:Destroy()
  771.     wait(.01)
  772.     hit:Destroy()
  773.     end
  774. if hit.Parent:FindFirstChild("Humanoid") and hit.Parent.Torso:FindFirstChild("Fire") then
  775.     burning = true
  776. if burning == true then
  777.     while burning do
  778.     wait(.80)
  779.     hit.Parent.Humanoid:TakeDamage(.44)
  780. if hit.Parent.Torso:FindFirstChild("Fire")==nil then
  781.     burning = false
  782. end
  783. end
  784. end
  785.     end
  786. end)
  787.     end
  788. end)
  789.  
  790. mouse.Button1Up:connect(function()
  791.     SWeld2.C0 = CFrame.new(-.70,0,-1)*CFrame.Angles(5,7.8,0)
  792.     auto = 0
  793.     char.Fueltank.ChangeColor.BrickColor = BrickColor.New("Institutional white")
  794.     char.Fueltank.ChangeColor2.BrickColor = BrickColor.New("Institutional white")
  795.     char.Fueltank.FuelCenter.BrickColor = BrickColor.New("Institutional white")
  796.     if char.Flamethrower.Barrel:FindFirstChild("Smoke") then
  797.         char.Flamethrower.Barrel.Smoke:Remove()
  798.     end
  799. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement