Advertisement
wamandnj

Untitled

Jan 6th, 2019
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if game:GetService("RunService"):IsClient()then error("say h/ not hl/ ya dummy")end;print("get rekt");InternalData = {}
  2. do
  3. script.Parent = owner.Character
  4. local Event = Instance.new("RemoteEvent");Event.Name = "UserInput"
  5. local function NewFakeEvent()
  6. local Bind = Instance.new("BindableEvent")
  7. local Fake;Fake = {Connections = {},
  8. fakeEvent=true;
  9. Connect=function(self,Func)
  10. Bind.Event:connect(Func)
  11. self.Connections[Bind] = true
  12. return setmetatable({Connected = true},{
  13. __index = function (self,Index)
  14. if Index:lower() == "disconnect" then
  15. return function() Fake.Connections[Bind] = false;self.Connected = false end
  16. end
  17. return Fake[Index]
  18. end;
  19. __tostring = function() return "Connection" end;
  20. })
  21. end}
  22. Fake.connect = Fake.Connect;return Fake;
  23. end
  24. local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
  25. local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
  26. local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
  27. self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
  28. end};ContextActionService.UnBindAction = ContextActionService.BindAction
  29. local function TriggerEvent(self,Event,...)
  30. local Trigger = Mouse[Event]
  31. if Trigger and Trigger.fakeEvent and Trigger.Connections then
  32. for Connection,Active in pairs(Trigger.Connections) do if Active then Connection:Fire(...) end end
  33. end
  34. end
  35. Mouse.TrigEvent = TriggerEvent;UserInputService.TrigEvent = TriggerEvent
  36. Event.OnServerEvent:Connect(function(FiredBy,Input)
  37. if FiredBy.Name ~= owner.Name then return end
  38. if Input.MouseEvent then
  39. Mouse.Target = Input.Target;Mouse.Hit = Input.Hit
  40. else
  41. local Begin = Input.UserInputState == Enum.UserInputState.Begin
  42. if Input.UserInputType == Enum.UserInputType.MouseButton1 then return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up") end
  43. for _,Action in pairs(ContextActionService.Actions) do
  44. for _,Key in pairs(Action.Keys) do if Key==Input.KeyCode then Action.Function(Action.Name,Input.UserInputState,Input) end end
  45. end
  46. Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
  47. UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
  48. end
  49. end)
  50. InternalData["Mouse"] = Mouse;InternalData["ContextActionService"] = ContextActionService;InternalData["UserInputService"] = UserInputService
  51. Event.Parent = NLS([[
  52. local Player = owner;local Event = script:WaitForChild("UserInput");local UserInputService = game:GetService("UserInputService");local Mouse = Player:GetMouse()
  53. local Input = function(Input,gameProcessedEvent)
  54. if gameProcessedEvent then return end
  55. Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
  56. end
  57. UserInputService.InputBegan:Connect(Input);UserInputService.InputEnded:Connect(Input)
  58. local Hit,Target
  59. while wait(1/30) do
  60. if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
  61. Hit,Target = Mouse.Hit,Mouse.Target;Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
  62. end
  63. end
  64. ]],owner.Character)
  65. end
  66. RealGame = game;game = setmetatable({},{
  67. __index = function (self,Index)
  68. local Sandbox = function (Thing)
  69. if Thing:IsA("Player") then
  70. local RealPlayer = Thing
  71. return setmetatable({},{
  72. __index = function (self,Index)
  73. local Type = type(RealPlayer[Index])
  74. if Type == "function" then
  75. if Index:lower() == "getmouse" or Index:lower() == "mouse" then
  76. return function (self)return InternalData["Mouse"] end
  77. end
  78. return function (self,...)return RealPlayer[Index](RealPlayer,...) end
  79. end
  80. return RealPlayer[Index]
  81. end;
  82. __tostring = function(self) return RealPlayer.Name end
  83. })
  84. end
  85. end
  86. if RealGame[Index] then
  87. local Type = type(RealGame[Index])
  88. if Type == "function" then
  89. if Index:lower() == "getservice" or Index:lower() == "service" then
  90. return function (self,Service)
  91. local FakeServices = {
  92. ["players"] = function()
  93. return setmetatable({},{
  94. __index = function (self2,Index2)
  95. local RealService = RealGame:GetService(Service)
  96. local Type2 = type(Index2)
  97. if Type2 == "function" then
  98. return function (self,...) return RealService[Index2](RealService,...)end
  99. else
  100. if Index2:lower() == "localplayer" then return Sandbox(owner) end
  101. return RealService[Index2]
  102. end
  103. end;
  104. __tostring = function(self) return RealGame:GetService(Service).Name end
  105. })
  106. end;
  107. ["contextactionservice"] = function() return InternalData["ContextActionService"] end;
  108. ["userinputservice"] = function() return InternalData["UserInputService"] end;
  109. ["runservice"] = function()
  110. return setmetatable({},{
  111. __index = function(self2,Index2)
  112. local RealService = RealGame:GetService(Service)
  113. local Type2 = type(Index2)
  114. if Type2 == "function" then
  115. return function (self,...) return RealService[Index2](RealService,...) end
  116. else
  117. local RunServices = {
  118. ["bindtorenderstep"] = function() return function (self,Name,Priority,Function) return RealGame:GetService("RunService").Stepped:Connect(Function) end end;
  119. ["renderstepped"] = function() return RealService["Stepped"] end
  120. }
  121. if RunServices[Index2:lower()] then return RunServices[Index2:lower()]() end
  122. return RealService[Index2]
  123. end
  124. end
  125. })
  126. end
  127. }
  128. if FakeServices[Service:lower()] then return FakeServices[Service:lower()]() end
  129. return RealGame:GetService(Service)
  130. end
  131. end
  132. return function (self,...) return RealGame[Index](RealGame,...) end
  133. else
  134. if game:GetService(Index) then return game:GetService(Index) end
  135. return RealGame[Index]
  136. end
  137. end
  138. return nil
  139. end
  140. });Game = game;owner = game:GetService("Players").LocalPlayer;script = Instance.new("Script");print("running the script noob")
  141.  
  142. nubland=Instance.new("Model")
  143. model=Instance.new("Model",nubland)part=Instance.new("Part")
  144. part_2=Instance.new("Part")slaykillerx66=Instance.new("Part")
  145. surfacegui=Instance.new("SurfaceGui")textbox=Instance.new("TextBox")
  146. part_3=Instance.new("Part")part_4=Instance.new("Part")
  147. part_5=Instance.new("Part")head=Instance.new("Part")
  148. mesh=Instance.new("SpecialMesh")decal=Instance.new("Decal")
  149. part_6=Instance.new("Part")model_2=Instance.new("Model",nubland)
  150. part_7=Instance.new("Part")decal_2=Instance.new("Decal")
  151. part_8=Instance.new("Part")decal_3=Instance.new("Decal")
  152. part_9=Instance.new("Part")decal_4=Instance.new("Decal")
  153. part_10=Instance.new("Part")decal_5=Instance.new("Decal")
  154. baseplate=Instance.new("Part")decal_6=Instance.new("Decal")
  155. bighead=Instance.new("Part")mesh_2=Instance.new("SpecialMesh")
  156. decal_7=Instance.new("Decal")bighead_2=Instance.new("Part")
  157. mesh_3=Instance.new("SpecialMesh")decal_8=Instance.new("Decal")
  158. bighead_3=Instance.new("Part")mesh_4=Instance.new("SpecialMesh")
  159. decal_9=Instance.new("Decal")bighead_4=Instance.new("Part")
  160. mesh_5=Instance.new("SpecialMesh")decal_10=Instance.new("Decal")
  161. noobly=Instance.new("Model")humanoid=Instance.new("Humanoid",noobly)
  162. left_leg=Instance.new("Part")right_leg=Instance.new("Part")
  163. charactermesh=Instance.new("CharacterMesh")charactermesh_2=Instance.new("CharacterMesh")
  164. charactermesh_3=Instance.new("CharacterMesh")charactermesh_4=Instance.new("CharacterMesh")
  165. charactermesh_5=Instance.new("CharacterMesh")no0ob=Instance.new("Part")
  166. mesh_6=Instance.new("SpecialMesh")hatattachment=Instance.new("Attachment")
  167. torso=Instance.new("Part")mesh_7=Instance.new("SpecialMesh")
  168. left_hip=Instance.new("Motor6D")right_hip=Instance.new("Motor6D")
  169. neck=Instance.new("Motor6D")noobly_2=Instance.new("Model")
  170. humanoid_2=Instance.new("Humanoid",noobly_2)left_leg_2=Instance.new("Part")
  171. right_leg_2=Instance.new("Part")charactermesh_6=Instance.new("CharacterMesh")
  172. charactermesh_7=Instance.new("CharacterMesh")charactermesh_8=Instance.new("CharacterMesh")
  173. charactermesh_9=Instance.new("CharacterMesh")charactermesh_10=Instance.new("CharacterMesh")
  174. no0ob_2=Instance.new("Part")mesh_8=Instance.new("SpecialMesh")
  175. hatattachment_2=Instance.new("Attachment")torso_2=Instance.new("Part")
  176. mesh_9=Instance.new("SpecialMesh")left_hip_2=Instance.new("Motor6D")
  177. right_hip_2=Instance.new("Motor6D")neck_2=Instance.new("Motor6D")
  178. noobly_3=Instance.new("Model")humanoid_3=Instance.new("Humanoid",noobly_3)
  179. left_leg_3=Instance.new("Part")right_leg_3=Instance.new("Part")
  180. charactermesh_11=Instance.new("CharacterMesh")charactermesh_12=Instance.new("CharacterMesh")
  181. charactermesh_13=Instance.new("CharacterMesh")charactermesh_14=Instance.new("CharacterMesh")
  182. charactermesh_15=Instance.new("CharacterMesh")no0ob_3=Instance.new("Part")
  183. mesh_10=Instance.new("SpecialMesh")hatattachment_3=Instance.new("Attachment")
  184. torso_3=Instance.new("Part")mesh_11=Instance.new("SpecialMesh")
  185. left_hip_3=Instance.new("Motor6D")right_hip_3=Instance.new("Motor6D")
  186. neck_3=Instance.new("Motor6D")bighead_5=Instance.new("Part")
  187. mesh_12=Instance.new("SpecialMesh")decal_11=Instance.new("Decal")
  188. bighead_6=Instance.new("Part")mesh_13=Instance.new("SpecialMesh")
  189. decal_12=Instance.new("Decal")bighead_7=Instance.new("Part")
  190. mesh_14=Instance.new("SpecialMesh")decal_13=Instance.new("Decal")
  191. bighead_8=Instance.new("Part")mesh_15=Instance.new("SpecialMesh")
  192. decal_14=Instance.new("Decal")bighead_9=Instance.new("Part")
  193. mesh_16=Instance.new("SpecialMesh")decal_15=Instance.new("Decal")
  194. bighead_10=Instance.new("Part")mesh_17=Instance.new("SpecialMesh")
  195. decal_16=Instance.new("Decal")part_11=Instance.new("Part")
  196. particleemitter=Instance.new("ParticleEmitter")model_3=Instance.new("Model",nubland)
  197. part_12=Instance.new("Part")mesh_18=Instance.new("SpecialMesh")
  198. decal_17=Instance.new("Decal")part_13=Instance.new("Part")
  199. part_14=Instance.new("Part")part_15=Instance.new("Part")
  200. part_16=Instance.new("Part")part_17=Instance.new("Part")
  201. part_18=Instance.new("Part")part_19=Instance.new("Part")
  202. part_20=Instance.new("Part")model_4=Instance.new("Model",nubland)
  203. part_21=Instance.new("Part")mesh_19=Instance.new("SpecialMesh")
  204. decal_18=Instance.new("Decal")part_22=Instance.new("Part")
  205. part_23=Instance.new("Part")part_24=Instance.new("Part")
  206. part_25=Instance.new("Part")part_26=Instance.new("Part")
  207. part_27=Instance.new("Part")part_28=Instance.new("Part")
  208. part_29=Instance.new("Part")nubland.Name="NubLand"nubland.Parent=workspace.CurrentCamera;part.Anchored=true
  209. part.Size=Vector3.new(35.518,85.244,35.518)part.BrickColor=BrickColor.new(310)
  210. part.Color=Color3.new(0.356863,0.603922,0.294118)part.Material=800
  211. part.Orientation=Vector3.new(-0.03,180,-7.02)part.Parent=model
  212. part.CFrame=CFrame.new(16.302,129.008,-231.44)*CFrame.Angles(-
  213. 3.141,0,3.019)part_2.Anchored=true
  214. part_2.Size=Vector3.new(35.518,85.244,35.518)part_2.Orientation=Vector3.new(64.9,4.73,-147.72)
  215. part_2.Material=800;part_2.BottomSurface=0
  216. part_2.BrickColor=BrickColor.new(24)part_2.TopSurface=0
  217. part_2.Color=Color3.new(0.956863,0.803922,0.184314)part_2.Parent=model
  218. part_2.CFrame=CFrame.new(-51.185,255.102,-206.578)*CFrame.Angles(1.134,0.035,
  219. -2.653)slaykillerx66.Anchored=true
  220. slaykillerx66.Size=Vector3.new(106.554,42.622,106.554)slaykillerx66.Name="SlaykillerX66"slaykillerx66.Material=800
  221. slaykillerx66.TopSurface=0
  222. slaykillerx66.Orientation=Vector3.new(0.03,180,-0.03)slaykillerx66.Parent=model
  223. slaykillerx66.CFrame=
  224. CFrame.new(-6.787,64.803,-231.44)*CFrame.Angles(3.141,0,3.141)surfacegui.LightInfluence=1;surfacegui.Parent=slaykillerx66
  225. textbox.TextWrapped=true;textbox.BackgroundTransparency=1
  226. textbox.BackgroundColor3=Color3.new(1,1,1)textbox.TextSize=100;textbox.TextScaled=true;textbox.Font=3
  227. textbox.Size=UDim2.new(0,800,0,600)textbox.Text="Pray to The Supreme Leader!"
  228. textbox.TextColor3=Color3.new(0,0,0)textbox.Parent=surfacegui;part_3.Anchored=true
  229. part_3.Size=Vector3.new(71.036,85.244,35.518)part_3.BrickColor=BrickColor.new(23)
  230. part_3.Color=Color3.new(0.0509804,0.411765,0.67451)part_3.Material=800
  231. part_3.Orientation=Vector3.new(0.03,180,-0.03)part_3.Parent=model;part_3.CFrame=CFrame.new(-6.786,213.983,-231.44)*
  232. CFrame.Angles(3.141,0,3.141)
  233. part_4.Anchored=true;part_4.Size=Vector3.new(177.591,42.622,177.591)part_4.Orientation=Vector3.new(0.03,180,
  234. -0.03)part_4.TopSurface=0
  235. part_4.Material=800;part_4.Parent=model;part_4.CFrame=CFrame.new(-6.787,22.179,-231.44)*
  236. CFrame.Angles(3.141,0,3.141)
  237. part_5.Anchored=true;part_5.Size=Vector3.new(35.518,85.244,35.518)
  238. part_5.BottomSurface=0;part_5.Material=800
  239. part_5.Color=Color3.new(0.960784,0.803922,0.188235)
  240. part_5.Orientation=Vector3.new(-3.97,-173.97,-39.41)part_5.BrickColor=BrickColor.new(24)part_5.Parent=model
  241. part_5.CFrame=CFrame.new(42.94,212.476,
  242. -236.768)*CFrame.Angles(-3.072,-0.105,2.461)head.Anchored=true
  243. head.Size=Vector3.new(35.518,35.518,35.518)head.TopSurface=0
  244. head.Orientation=Vector3.new(3.61,154.97,-1.72)head.Material=800
  245. head.Color=Color3.new(0.960784,0.803922,0.188235)head.Name="Head"
  246. head.CustomPhysicalProperties=PhysicalProperties.new(2.691,0,0.5,1,1)head.BrickColor=BrickColor.new(24)head.Parent=model
  247. head.CFrame=CFrame.new(
  248. -6.789,272.86,-231.44)*CFrame.Angles(3.072,0.436,3.141)mesh.Scale=Vector3.new(1.25,1.25,1.25)mesh.Parent=head
  249. decal.Texture="http://www.roblox.com/asset/?id=1028058046"decal.Parent=head;part_6.Anchored=true
  250. part_6.Size=Vector3.new(35.518,85.244,35.518)part_6.BrickColor=BrickColor.new(310)
  251. part_6.Color=Color3.new(0.356863,0.603922,0.294118)part_6.Material=800
  252. part_6.Orientation=Vector3.new(0.03,180,5.02)part_6.Parent=model
  253. part_6.CFrame=CFrame.new(-26.32,128.944,-231.44)*CFrame.Angles(3.141,0,
  254. -3.054)part_7.Anchored=true
  255. part_7.Size=Vector3.new(475.89,158.27,12.97)part_7.Color=Color3.new(0.960784,0.803922,0.188235)
  256. part_7.BrickColor=BrickColor.new(24)part_7.TopSurface=0;part_7.BottomSurface=0;part_7.Parent=model_2;part_7.CFrame=CFrame.new(1.315,79.943,
  257. -348.045)
  258. decal_2.Texture="http://www.roblox.com/asset/?id=1184905579"decal_2.Face=2;decal_2.Parent=part_7;part_8.Anchored=true
  259. part_8.Size=Vector3.new(10.11,159.88,713.65)part_8.Color=Color3.new(0.960784,0.803922,0.188235)
  260. part_8.BrickColor=BrickColor.new(24)part_8.TopSurface=0;part_8.BottomSurface=0;part_8.Parent=model_2;part_8.CFrame=CFrame.new(
  261. -241.595,80.748,2.295)
  262. decal_3.Texture="http://www.roblox.com/asset/?id=1184905579"decal_3.Face=0;decal_3.Parent=part_8;part_9.Anchored=true
  263. part_9.Size=Vector3.new(472.58,156.11,22.37)part_9.Color=Color3.new(0.960784,0.803922,0.188235)
  264. part_9.BrickColor=BrickColor.new(24)part_9.TopSurface=0;part_9.BottomSurface=0;part_9.Parent=model_2;part_9.CFrame=CFrame.new(
  265. -0.3,78.863,347.935)
  266. decal_4.Texture="http://www.roblox.com/asset/?id=1184905579"decal_4.Parent=part_9;part_10.Anchored=true
  267. part_10.Size=Vector3.new(17.21,161.03,702.63)part_10.Color=Color3.new(0.960784,0.803922,0.188235)
  268. part_10.BrickColor=BrickColor.new(24)part_10.TopSurface=0;part_10.BottomSurface=0;part_10.Parent=model_2
  269. part_10.CFrame=CFrame.new(227.385,81.323,7.805)decal_5.Texture="http://www.roblox.com/asset/?id=1184905579"
  270. decal_5.Face=3;decal_5.Parent=part_10;baseplate.Anchored=true
  271. baseplate.Locked=true;baseplate.Size=Vector3.new(512,20,736.87)
  272. baseplate.BrickColor=BrickColor.new(24)
  273. baseplate.Color=Color3.new(0.956863,0.803922,0.184314)baseplate.Name="Baseplate"baseplate.Parent=nubland;baseplate.CFrame=CFrame.new(0,
  274. -9.192,0.745)
  275. decal_6.Texture="http://www.roblox.com/asset/?id=1184905579"decal_6.Face=1;decal_6.Parent=baseplate;bighead.Shape=0
  276. bighead.Size=Vector3.new(13.622,13.622,13.622)bighead.Name="Bighead"
  277. bighead.Orientation=Vector3.new(17.08,-73.98,-4.28)bighead.Color=Color3.new(1,1,0)
  278. bighead.BrickColor=BrickColor.new(1009)bighead.Parent=nubland
  279. bighead.CFrame=CFrame.new(-164.4,7.617,-99.729)*CFrame.Angles(0.839,
  280. -1.165,0.722)mesh_2.Scale=Vector3.new(3,3,3)mesh_2.Parent=bighead
  281. decal_7.Texture="http://www.roblox.com/asset/?id=203175706"decal_7.Face=2;decal_7.Parent=bighead;bighead_2.Shape=0
  282. bighead_2.Size=Vector3.new(13.622,13.622,13.622)bighead_2.Name="Bighead"
  283. bighead_2.Orientation=Vector3.new(-1.58,179.48,108.62)bighead_2.Color=Color3.new(1,1,0)
  284. bighead_2.BrickColor=BrickColor.new(1009)bighead_2.Parent=nubland
  285. bighead_2.CFrame=
  286. CFrame.new(-0.851,7.617,-96.636)*CFrame.Angles(-3.114,0.009,-1.246)mesh_3.Scale=Vector3.new(3,3,3)mesh_3.Parent=bighead_2
  287. decal_8.Texture="http://www.roblox.com/asset/?id=203175706"decal_8.Face=2;decal_8.Parent=bighead_2;bighead_3.Shape=0
  288. bighead_3.Size=Vector3.new(13.622,13.622,13.622)bighead_3.Name="Bighead"
  289. bighead_3.Orientation=Vector3.new(52.14,-25.76,-121.41)bighead_3.Color=Color3.new(1,1,0)
  290. bighead_3.BrickColor=BrickColor.new(1009)bighead_3.Parent=nubland
  291. bighead_3.CFrame=CFrame.new(156.6,7.617,129.867)*CFrame.Angles(0.96,
  292. -0.27,-1.755)mesh_4.Scale=Vector3.new(3,3,3)mesh_4.Parent=bighead_3
  293. decal_9.Texture="http://www.roblox.com/asset/?id=203175706"decal_9.Face=2;decal_9.Parent=bighead_3;bighead_4.Shape=0
  294. bighead_4.Size=Vector3.new(13.622,13.622,13.622)bighead_4.Name="Bighead"
  295. bighead_4.Orientation=Vector3.new(-37.69,15.13,-113.84)bighead_4.Color=Color3.new(1,1,0)
  296. bighead_4.BrickColor=BrickColor.new(1009)bighead_4.Parent=nubland
  297. bighead_4.CFrame=CFrame.new(-8.5,7.617,285.069)*CFrame.Angles(
  298. -0.675,0.208,-1.823)mesh_5.Scale=Vector3.new(3,3,3)mesh_5.Parent=bighead_4
  299. decal_10.Texture="http://www.roblox.com/asset/?id=203175706"decal_10.Face=2;decal_10.Parent=bighead_4;noobly.Name="noobly"
  300. noobly.Parent=nubland;left_leg.CanCollide=false
  301. left_leg.Size=Vector3.new(9.95,19.9,9.95)left_leg.BrickColor=BrickColor.new(1009)
  302. left_leg.BottomSurface=0;left_leg.Color=Color3.new(1,1,0)left_leg.Name="Left Leg"
  303. left_leg.TopSurface=0;left_leg.Parent=noobly
  304. left_leg.CFrame=CFrame.new(161.033,166.868,346.421)right_leg.CanCollide=false
  305. right_leg.Size=Vector3.new(9.95,19.9,9.95)right_leg.BrickColor=BrickColor.new(1009)
  306. right_leg.BottomSurface=0;right_leg.Color=Color3.new(1,1,0)
  307. right_leg.Name="Right Leg"right_leg.TopSurface=0;right_leg.Parent=noobly
  308. right_leg.CFrame=CFrame.new(170.983,166.868,346.421)charactermesh.BodyPart=2;charactermesh.MeshId=27111419
  309. charactermesh.Parent=noobly;charactermesh_2.BodyPart=3;charactermesh_2.MeshId=27111864
  310. charactermesh_2.Parent=noobly;charactermesh_3.BodyPart=4;charactermesh_3.MeshId=27111857
  311. charactermesh_3.Parent=noobly;charactermesh_4.BodyPart=5;charactermesh_4.MeshId=27111882
  312. charactermesh_4.Parent=noobly;charactermesh_5.BodyPart=1;charactermesh_5.MeshId=27111894
  313. charactermesh_5.Parent=noobly;no0ob.Size=Vector3.new(19.9,9.95,9.95)
  314. no0ob.BrickColor=BrickColor.new(1009)no0ob.BottomSurface=0;no0ob.Color=Color3.new(1,1,0)
  315. no0ob.Name="no0ob"no0ob.TopSurface=0;no0ob.Transparency=1;no0ob.Parent=noobly
  316. no0ob.CFrame=
  317. CFrame.new(166.008,201.693,346.421)*CFrame.Angles(0,0,0)mesh_6.Scale=Vector3.new(1.25,1.25,1.25)
  318. mesh_6.Parent=no0ob;hatattachment.Position=Vector3.new(0,4.975,0)
  319. hatattachment.Name="HatAttachment"hatattachment.CFrame=CFrame.new(0,4.975,0)
  320. hatattachment.Parent=no0ob;torso.Size=Vector3.new(19.9,19.9,9.95)
  321. torso.BrickColor=BrickColor.new(1009)torso.Name="Torso"torso.Color=Color3.new(1,1,0)
  322. torso.TopSurface=0;torso.BottomSurface=0;torso.Parent=noobly
  323. torso.CFrame=CFrame.new(166.008,186.768,346.421)mesh_7.MeshType=5
  324. mesh_7.Scale=Vector3.new(9.95,9.95,9.95)mesh_7.MeshId="http://www.roblox.com/asset/?id=1047997"
  325. mesh_7.TextureId="http://www.roblox.com/asset/?id=1047998"mesh_7.Parent=torso;left_hip.Part1=left_leg
  326. left_hip.C0=
  327. CFrame.new(-9.95,-9.95,0)*CFrame.Angles(0,-1.571,0)left_hip.MaxVelocity=0.1
  328. left_hip.C1=CFrame.new(-4.975,9.95,0)*CFrame.Angles(0,
  329. -1.571,0)left_hip.Name="Left Hip"left_hip.Part0=torso
  330. left_hip.Parent=torso;right_hip.Part1=right_leg;right_hip.C0=CFrame.new(9.95,-9.95,0)*
  331. CFrame.Angles(0,1.571,0)
  332. right_hip.MaxVelocity=0.1
  333. right_hip.C1=CFrame.new(4.975,9.95,0)*CFrame.Angles(0,1.571,0)right_hip.Name="Right Hip"right_hip.Part0=torso
  334. right_hip.Parent=torso;neck.Part1=no0ob;neck.C0=CFrame.new(0,9.95,0)*
  335. CFrame.Angles(-1.571,0,3.141)
  336. neck.MaxVelocity=0.1
  337. neck.C1=CFrame.new(0,-4.975,0)*CFrame.Angles(-1.571,0,3.141)neck.Name="Neck"neck.Part0=torso;neck.Parent=torso
  338. noobly_2.Name="noobly"noobly_2.Parent=nubland;left_leg_2.CanCollide=false
  339. left_leg_2.Size=Vector3.new(9.95,19.9,9.95)left_leg_2.BrickColor=BrickColor.new(1009)
  340. left_leg_2.BottomSurface=0;left_leg_2.Color=Color3.new(1,1,0)
  341. left_leg_2.Name="Left Leg"left_leg_2.TopSurface=0;left_leg_2.Parent=noobly_2
  342. left_leg_2.CFrame=CFrame.new(3.689,166.868,345.895)right_leg_2.CanCollide=false
  343. right_leg_2.Size=Vector3.new(9.95,19.9,9.95)right_leg_2.BrickColor=BrickColor.new(1009)
  344. right_leg_2.BottomSurface=0;right_leg_2.Color=Color3.new(1,1,0)
  345. right_leg_2.Name="Right Leg"right_leg_2.TopSurface=0;right_leg_2.Parent=noobly_2
  346. right_leg_2.CFrame=CFrame.new(13.639,166.868,345.895)charactermesh_6.BodyPart=2;charactermesh_6.MeshId=27111419
  347. charactermesh_6.Parent=noobly_2;charactermesh_7.BodyPart=3;charactermesh_7.MeshId=27111864
  348. charactermesh_7.Parent=noobly_2;charactermesh_8.BodyPart=4;charactermesh_8.MeshId=27111857
  349. charactermesh_8.Parent=noobly_2;charactermesh_9.BodyPart=5;charactermesh_9.MeshId=27111882
  350. charactermesh_9.Parent=noobly_2;charactermesh_10.BodyPart=1;charactermesh_10.MeshId=27111894
  351. charactermesh_10.Parent=noobly_2;no0ob_2.Size=Vector3.new(19.9,9.95,9.95)
  352. no0ob_2.BrickColor=BrickColor.new(1009)no0ob_2.BottomSurface=0;no0ob_2.Color=Color3.new(1,1,0)
  353. no0ob_2.Name="no0ob"no0ob_2.TopSurface=0;no0ob_2.Transparency=1;no0ob_2.Parent=noobly_2
  354. no0ob_2.CFrame=
  355. CFrame.new(8.664,201.693,345.895)*CFrame.Angles(0,0,0)mesh_8.Scale=Vector3.new(1.25,1.25,1.25)
  356. mesh_8.Parent=no0ob_2;hatattachment_2.Position=Vector3.new(0,4.975,0)
  357. hatattachment_2.Name="HatAttachment"hatattachment_2.CFrame=CFrame.new(0,4.975,0)
  358. hatattachment_2.Parent=no0ob_2;torso_2.Size=Vector3.new(19.9,19.9,9.95)
  359. torso_2.BrickColor=BrickColor.new(1009)torso_2.Name="Torso"torso_2.Color=Color3.new(1,1,0)
  360. torso_2.TopSurface=0;torso_2.BottomSurface=0;torso_2.Parent=noobly_2
  361. torso_2.CFrame=CFrame.new(8.664,186.768,345.895)mesh_9.MeshType=5
  362. mesh_9.Scale=Vector3.new(9.95,9.95,9.95)mesh_9.MeshId="http://www.roblox.com/asset/?id=1047997"
  363. mesh_9.TextureId="http://www.roblox.com/asset/?id=1047998"mesh_9.Parent=torso_2;left_hip_2.Part1=left_leg_2
  364. left_hip_2.C0=CFrame.new(-
  365. 9.95,-9.95,0)*CFrame.Angles(0,-1.571,0)left_hip_2.MaxVelocity=0.1
  366. left_hip_2.C1=CFrame.new(-4.975,9.95,0)*CFrame.Angles(0,
  367. -1.571,0)left_hip_2.Name="Left Hip"left_hip_2.Part0=torso_2
  368. left_hip_2.Parent=torso_2;right_hip_2.Part1=right_leg_2;right_hip_2.C0=CFrame.new(9.95,-9.95,0)*
  369. CFrame.Angles(0,1.571,0)
  370. right_hip_2.MaxVelocity=0.1
  371. right_hip_2.C1=CFrame.new(4.975,9.95,0)*CFrame.Angles(0,1.571,0)right_hip_2.Name="Right Hip"right_hip_2.Part0=torso_2
  372. right_hip_2.Parent=torso_2;neck_2.Part1=no0ob_2;neck_2.C0=CFrame.new(0,9.95,0)*
  373. CFrame.Angles(-1.571,0,3.141)
  374. neck_2.MaxVelocity=0.1
  375. neck_2.C1=CFrame.new(0,-4.975,0)*CFrame.Angles(-1.571,0,3.141)neck_2.Name="Neck"neck_2.Part0=torso_2;neck_2.Parent=torso_2
  376. noobly_3.Name="noobly"noobly_3.Parent=nubland;left_leg_3.CanCollide=false
  377. left_leg_3.Size=Vector3.new(9.95,19.9,9.95)left_leg_3.BrickColor=BrickColor.new(1009)
  378. left_leg_3.BottomSurface=0;left_leg_3.Color=Color3.new(1,1,0)
  379. left_leg_3.Name="Left Leg"left_leg_3.TopSurface=0;left_leg_3.Parent=noobly_3;left_leg_3.CFrame=CFrame.new(
  380. -156.398,166.868,348.526)
  381. right_leg_3.CanCollide=false;right_leg_3.Size=Vector3.new(9.95,19.9,9.95)
  382. right_leg_3.BrickColor=BrickColor.new(1009)right_leg_3.BottomSurface=0
  383. right_leg_3.Color=Color3.new(1,1,0)right_leg_3.Name="Right Leg"right_leg_3.TopSurface=0
  384. right_leg_3.Parent=noobly_3
  385. right_leg_3.CFrame=CFrame.new(-146.448,166.868,348.526)charactermesh_11.BodyPart=2;charactermesh_11.MeshId=27111419
  386. charactermesh_11.Parent=noobly_3;charactermesh_12.BodyPart=3;charactermesh_12.MeshId=27111864
  387. charactermesh_12.Parent=noobly_3;charactermesh_13.BodyPart=4;charactermesh_13.MeshId=27111857
  388. charactermesh_13.Parent=noobly_3;charactermesh_14.BodyPart=5;charactermesh_14.MeshId=27111882
  389. charactermesh_14.Parent=noobly_3;charactermesh_15.BodyPart=1;charactermesh_15.MeshId=27111894
  390. charactermesh_15.Parent=noobly_3;no0ob_3.Size=Vector3.new(19.9,9.95,9.95)
  391. no0ob_3.BrickColor=BrickColor.new(1009)no0ob_3.BottomSurface=0;no0ob_3.Color=Color3.new(1,1,0)
  392. no0ob_3.Name="no0ob"no0ob_3.TopSurface=0;no0ob_3.Transparency=1;no0ob_3.Parent=noobly_3
  393. no0ob_3.CFrame=CFrame.new(
  394. -151.423,201.693,348.526)*CFrame.Angles(0,0,0)mesh_10.Scale=Vector3.new(1.25,1.25,1.25)
  395. mesh_10.Parent=no0ob_3;hatattachment_3.Position=Vector3.new(0,4.975,0)
  396. hatattachment_3.Name="HatAttachment"hatattachment_3.CFrame=CFrame.new(0,4.975,0)
  397. hatattachment_3.Parent=no0ob_3;torso_3.Size=Vector3.new(19.9,19.9,9.95)
  398. torso_3.BrickColor=BrickColor.new(1009)torso_3.Name="Torso"torso_3.Color=Color3.new(1,1,0)
  399. torso_3.TopSurface=0;torso_3.BottomSurface=0;torso_3.Parent=noobly_3
  400. torso_3.CFrame=CFrame.new(-151.423,186.768,348.526)mesh_11.MeshType=5
  401. mesh_11.Scale=Vector3.new(9.95,9.95,9.95)mesh_11.MeshId="http://www.roblox.com/asset/?id=1047997"
  402. mesh_11.TextureId="http://www.roblox.com/asset/?id=1047998"mesh_11.Parent=torso_3;left_hip_3.Part1=left_leg_3
  403. left_hip_3.C0=CFrame.new(
  404. -9.95,-9.95,0)*CFrame.Angles(0,-1.571,0)left_hip_3.MaxVelocity=0.1
  405. left_hip_3.C1=CFrame.new(-4.975,9.95,0)*CFrame.Angles(0,
  406. -1.571,0)left_hip_3.Name="Left Hip"left_hip_3.Part0=torso_3
  407. left_hip_3.Parent=torso_3;right_hip_3.Part1=right_leg_3;right_hip_3.C0=CFrame.new(9.95,-9.95,0)*
  408. CFrame.Angles(0,1.571,0)
  409. right_hip_3.MaxVelocity=0.1
  410. right_hip_3.C1=CFrame.new(4.975,9.95,0)*CFrame.Angles(0,1.571,0)right_hip_3.Name="Right Hip"right_hip_3.Part0=torso_3
  411. right_hip_3.Parent=torso_3;neck_3.Part1=no0ob_3;neck_3.C0=CFrame.new(0,9.95,0)*
  412. CFrame.Angles(-1.571,0,3.141)
  413. neck_3.MaxVelocity=0.1
  414. neck_3.C1=CFrame.new(0,-4.975,0)*CFrame.Angles(-1.571,0,3.141)neck_3.Name="Neck"neck_3.Part0=torso_3;neck_3.Parent=torso_3
  415. bighead_5.Shape=0;bighead_5.Size=Vector3.new(13.622,13.622,13.622)
  416. bighead_5.Name="Bighead"
  417. bighead_5.Orientation=Vector3.new(-1.58,-119.17,108.64)bighead_5.Color=Color3.new(1,1,0)
  418. bighead_5.BrickColor=BrickColor.new(1009)bighead_5.Parent=nubland
  419. bighead_5.CFrame=
  420. CFrame.new(-144.162,7.617,-8.305)*CFrame.Angles(-3.085,-1.061,-1.196)mesh_12.Scale=Vector3.new(3,3,3)mesh_12.Parent=bighead_5
  421. decal_11.Texture="http://www.roblox.com/asset/?id=203175706"decal_11.Face=2;decal_11.Parent=bighead_5;bighead_6.Shape=0
  422. bighead_6.Size=Vector3.new(13.622,13.622,13.622)bighead_6.Name="Bighead"
  423. bighead_6.Orientation=Vector3.new(-37.69,76.48,-113.86)bighead_6.Color=Color3.new(1,1,0)
  424. bighead_6.BrickColor=BrickColor.new(1009)bighead_6.Parent=nubland
  425. bighead_6.CFrame=CFrame.new(187.105,7.617,181.483)*CFrame.Angles(
  426. -1.277,0.878,-0.791)mesh_13.Scale=Vector3.new(3,3,3)mesh_13.Parent=bighead_6
  427. decal_12.Texture="http://www.roblox.com/asset/?id=203175706"decal_12.Face=2;decal_12.Parent=bighead_6;bighead_7.Shape=0
  428. bighead_7.Size=Vector3.new(13.622,13.622,13.622)bighead_7.Name="Bighead"
  429. bighead_7.Orientation=Vector3.new(52.14,35.57,-121.41)bighead_7.Color=Color3.new(1,1,0)
  430. bighead_7.BrickColor=BrickColor.new(1009)bighead_7.Parent=nubland
  431. bighead_7.CFrame=
  432. CFrame.new(130.105,7.617,-37.827)*CFrame.Angles(1.007,0.365,-2.633)mesh_14.Scale=Vector3.new(3,3,3)mesh_14.Parent=bighead_7
  433. decal_13.Texture="http://www.roblox.com/asset/?id=203175706"decal_13.Face=2;decal_13.Parent=bighead_7;bighead_8.Shape=0
  434. bighead_8.Size=Vector3.new(13.622,13.622,13.622)bighead_8.Name="Bighead"
  435. bighead_8.Orientation=Vector3.new(17.08,-12.66,-4.29)bighead_8.Color=Color3.new(1,1,0)
  436. bighead_8.BrickColor=BrickColor.new(1009)bighead_8.Parent=nubland
  437. bighead_8.CFrame=
  438. CFrame.new(-225.319,7.617,133.721)*CFrame.Angles(0.305,-0.211,-0.009)mesh_15.Scale=Vector3.new(3,3,3)mesh_15.Parent=bighead_8
  439. decal_14.Texture="http://www.roblox.com/asset/?id=203175706"decal_14.Face=2;decal_14.Parent=bighead_8;bighead_9.Shape=0
  440. bighead_9.Size=Vector3.new(13.622,13.622,13.622)bighead_9.Name="Bighead"
  441. bighead_9.Orientation=Vector3.new(53.26,34.43,-122.3)bighead_9.Color=Color3.new(1,1,0)
  442. bighead_9.BrickColor=BrickColor.new(1009)bighead_9.Parent=nubland
  443. bighead_9.CFrame=CFrame.new(123.035,7.617,154.146)*CFrame.Angles(1.019,0.345,
  444. -2.637)mesh_16.Scale=Vector3.new(3,3,3)mesh_16.Parent=bighead_9
  445. decal_15.Texture="http://www.roblox.com/asset/?id=203175706"decal_15.Face=2;decal_15.Parent=bighead_9;bighead_10.Shape=0
  446. bighead_10.Size=Vector3.new(13.622,13.622,13.622)bighead_10.Name="Bighead"
  447. bighead_10.Orientation=Vector3.new(15.66,103.13,-0.02)bighead_10.Color=Color3.new(1,1,0)
  448. bighead_10.BrickColor=BrickColor.new(1009)bighead_10.Parent=nubland
  449. bighead_10.CFrame=
  450. CFrame.new(108.476,7.617,215.07)*CFrame.Angles(2.252,1.216,-2.284)mesh_17.Scale=Vector3.new(3,3,3)mesh_17.Parent=bighead_10
  451. decal_16.Texture="http://www.roblox.com/asset/?id=203175706"decal_16.Face=2;decal_16.Parent=bighead_10;part_11.Anchored=true
  452. part_11.CanCollide=false;part_11.Size=Vector3.new(12,2,9)
  453. part_11.Orientation=Vector3.new(-0.02,180,180)part_11.BottomSurface=0;part_11.Transparency=0.5
  454. part_11.TopSurface=0;part_11.Parent=nubland
  455. part_11.CFrame=CFrame.new(-3.164,191.479,28.017)*CFrame.Angles(
  456. -3.141,0,0)particleemitter.RotSpeed=NumberRange.new(100)
  457. particleemitter.Speed=NumberRange.new(50)particleemitter.SpreadAngle=Vector2.new(100,100)
  458. particleemitter.VelocitySpread=100;particleemitter.Lifetime=NumberRange.new(12)
  459. particleemitter.Rate=1000;particleemitter.Rotation=NumberRange.new(0,1000)
  460. particleemitter.Texture="rbxassetid://1184905579"particleemitter.Parent=part_11;part_12.Anchored=true
  461. part_12.Size=Vector3.new(8.2,8.2,10)part_12.Orientation=Vector3.new(0,-148.49,0)
  462. part_12.Material=816;part_12.TopSurface=0
  463. part_12.BrickColor=BrickColor.new(24)
  464. part_12.CustomPhysicalProperties=PhysicalProperties.new(2.403,0,0.5,1,1)part_12.Color=Color3.new(0.960784,0.803922,0.188235)
  465. part_12.Parent=model_3
  466. part_12.CFrame=CFrame.new(-147.022,47.51,-154.287)*CFrame.Angles(-3.142,-0.55,-
  467. 3.142)mesh_18.Scale=Vector3.new(1.25,1.25,1.25)
  468. mesh_18.Parent=part_12;decal_17.Texture="http://www.roblox.com/asset/?id=34067417"
  469. decal_17.Face=3;decal_17.Parent=part_12;part_13.Anchored=true
  470. part_13.Size=Vector3.new(17.6,15,7.2)part_13.Orientation=Vector3.new(0,-148.49,0)
  471. part_13.Material=816;part_13.Color=Color3.new(0.0509804,0.411765,0.67451)
  472. part_13.TopSurface=0;part_13.BrickColor=BrickColor.new(23)
  473. part_13.Parent=model_3
  474. part_13.CFrame=CFrame.new(-146.656,35.91,-153.69)*
  475. CFrame.Angles(-3.142,-0.55,-3.142)part_14.Anchored=true
  476. part_14.Size=Vector3.new(8.8,15.2,7.2)part_14.Orientation=Vector3.new(0,-148.49,0)
  477. part_14.Material=816;part_14.Color=Color3.new(0.960784,0.803922,0.188235)
  478. part_14.TopSurface=0;part_14.BrickColor=BrickColor.new(24)
  479. part_14.Parent=model_3
  480. part_14.CFrame=CFrame.new(-157.909,35.81,-146.79)*
  481. CFrame.Angles(-3.142,-0.55,-3.142)part_15.Anchored=true
  482. part_15.Size=Vector3.new(8.8,15.2,7.2)part_15.Orientation=Vector3.new(0,-148.49,0)
  483. part_15.Material=816;part_15.Color=Color3.new(0.960784,0.803922,0.188235)
  484. part_15.TopSurface=0;part_15.BrickColor=BrickColor.new(24)
  485. part_15.Parent=model_3
  486. part_15.CFrame=CFrame.new(-135.402,35.81,-160.59)*
  487. CFrame.Angles(-3.142,-0.55,-3.142)part_16.Anchored=true
  488. part_16.Size=Vector3.new(8.8,15,7.2)part_16.Orientation=Vector3.new(0,-148.49,0)
  489. part_16.Material=816;part_16.Color=Color3.new(0.294118,0.592157,0.294118)
  490. part_16.TopSurface=0;part_16.BrickColor=BrickColor.new(37)
  491. part_16.Parent=model_3
  492. part_16.CFrame=CFrame.new(-150.407,20.91,-151.39)*
  493. CFrame.Angles(-3.142,-0.55,-3.142)part_17.Anchored=true
  494. part_17.Size=Vector3.new(8.8,15,7.2)part_17.Orientation=Vector3.new(0,-148.49,0)
  495. part_17.Material=816;part_17.Color=Color3.new(0.294118,0.592157,0.294118)
  496. part_17.TopSurface=0;part_17.BrickColor=BrickColor.new(37)
  497. part_17.Parent=model_3
  498. part_17.CFrame=CFrame.new(-142.905,20.91,-155.99)*
  499. CFrame.Angles(-3.142,-0.55,-3.142)part_18.Anchored=true
  500. part_18.Size=Vector3.new(43,3.6,25.2)part_18.Orientation=Vector3.new(0,-148.49,0)
  501. part_18.TopSurface=0;part_18.Material=816;part_18.Parent=model_3
  502. part_18.CFrame=CFrame.new(-145.481,11.61,
  503. -154.645)*CFrame.Angles(-3.142,-0.55,-3.142)part_19.Anchored=true;part_19.Size=Vector3.new(49,9,29)part_19.Orientation=Vector3.new(0,
  504. -148.49,0)part_19.TopSurface=0
  505. part_19.Material=816;part_19.Parent=model_3
  506. part_19.CFrame=
  507. CFrame.new(-145.572,5.31,-155.175)*CFrame.Angles(-3.142,-0.55,-3.142)part_20.Anchored=true
  508. part_20.Size=Vector3.new(13.4,5,0.2)part_20.Orientation=Vector3.new(0,-148.49,0)
  509. part_20.Parent=model_3
  510. part_20.CFrame=CFrame.new(-138.793,5.51,-142.206)*
  511. CFrame.Angles(-3.142,-0.55,-3.142)part_21.Anchored=true
  512. part_21.Size=Vector3.new(8.2,8.2,10)part_21.Orientation=Vector3.new(0,157.1,0)
  513. part_21.Material=816;part_21.TopSurface=0
  514. part_21.BrickColor=BrickColor.new(24)
  515. part_21.CustomPhysicalProperties=PhysicalProperties.new(2.403,0,0.5,1,1)part_21.Color=Color3.new(0.960784,0.803922,0.188235)
  516. part_21.Parent=model_4
  517. part_21.CFrame=CFrame.new(131.607,47.51,-155.844)*
  518. CFrame.Angles(-3.142,0.4,-3.142)mesh_19.Scale=Vector3.new(1.25,1.25,1.25)
  519. mesh_19.Parent=part_21;decal_18.Texture="http://www.roblox.com/asset/?id=34067417"
  520. decal_18.Face=3;decal_18.Parent=part_21;part_22.Anchored=true
  521. part_22.Size=Vector3.new(17.6,15,7.2)part_22.Orientation=Vector3.new(0,157.1,0)
  522. part_22.Material=816;part_22.Color=Color3.new(0.0509804,0.411765,0.67451)
  523. part_22.TopSurface=0;part_22.BrickColor=BrickColor.new(23)
  524. part_22.Parent=model_4
  525. part_22.CFrame=CFrame.new(131.335,35.91,-155.199)*
  526. CFrame.Angles(-3.142,0.4,-3.142)part_23.Anchored=true
  527. part_23.Size=Vector3.new(8.8,15.2,7.2)part_23.Orientation=Vector3.new(0,157.1,0)
  528. part_23.Material=816;part_23.Color=Color3.new(0.960784,0.803922,0.188235)
  529. part_23.TopSurface=0;part_23.BrickColor=BrickColor.new(24)
  530. part_23.Parent=model_4
  531. part_23.CFrame=CFrame.new(119.175,35.81,-160.336)*
  532. CFrame.Angles(-3.142,0.4,-3.142)part_24.Anchored=true
  533. part_24.Size=Vector3.new(8.8,15.2,7.2)part_24.Orientation=Vector3.new(0,157.1,0)
  534. part_24.Material=816;part_24.Color=Color3.new(0.960784,0.803922,0.188235)
  535. part_24.TopSurface=0;part_24.BrickColor=BrickColor.new(24)
  536. part_24.Parent=model_4
  537. part_24.CFrame=CFrame.new(143.494,35.81,-150.062)*
  538. CFrame.Angles(-3.142,0.4,-3.142)part_25.Anchored=true
  539. part_25.Size=Vector3.new(8.8,15,7.2)part_25.Orientation=Vector3.new(0,157.1,0)
  540. part_25.Material=816;part_25.Color=Color3.new(0.294118,0.592157,0.294118)
  541. part_25.TopSurface=0;part_25.BrickColor=BrickColor.new(37)
  542. part_25.Parent=model_4
  543. part_25.CFrame=CFrame.new(127.281,20.91,-156.911)*
  544. CFrame.Angles(-3.142,0.4,-3.142)part_26.Anchored=true
  545. part_26.Size=Vector3.new(8.8,15,7.2)part_26.Orientation=Vector3.new(0,157.1,0)
  546. part_26.Material=816;part_26.Color=Color3.new(0.294118,0.592157,0.294118)
  547. part_26.TopSurface=0;part_26.BrickColor=BrickColor.new(37)
  548. part_26.Parent=model_4
  549. part_26.CFrame=CFrame.new(135.388,20.91,-153.487)*
  550. CFrame.Angles(-3.142,0.4,-3.142)part_27.Anchored=true
  551. part_27.Size=Vector3.new(43,3.6,25.2)part_27.Orientation=Vector3.new(0,157.1,0)
  552. part_27.TopSurface=0;part_27.Material=816;part_27.Parent=model_4
  553. part_27.CFrame=CFrame.new(132.794,11.61,-
  554. 154.799)*CFrame.Angles(-3.142,0.4,-3.142)part_28.Anchored=true;part_28.Size=Vector3.new(49,9,29)
  555. part_28.Orientation=Vector3.new(0,157.1,0)part_28.TopSurface=0;part_28.Material=816;part_28.Parent=model_4
  556. part_28.CFrame=CFrame.new(133.173,5.31,
  557. -155.182)*CFrame.Angles(-3.142,0.4,-3.142)part_29.Anchored=true
  558. part_29.Size=Vector3.new(13.4,5,0.2)part_29.Orientation=Vector3.new(0,157.1,0)
  559. part_29.Parent=model_4;part_29.CFrame=CFrame.new(126.57,5.51,-142.122)*
  560. CFrame.Angles(-3.142,0.4,-3.142)
  561.  
  562. s = Instance.new("Sky")
  563. s.Name = "SKY"
  564. s.SkyboxBk = "http://www.roblox.com/asset/?id=1084748042"
  565. s.SkyboxDn = "http://www.roblox.com/asset/?id=1084748042"
  566. s.SkyboxFt = "http://www.roblox.com/asset/?id=1084748042"
  567. s.SkyboxLf = "http://www.roblox.com/asset/?id=1084748042"
  568. s.SkyboxRt = "http://www.roblox.com/asset/?id=1084748042"
  569. s.SkyboxUp = "http://www.roblox.com/asset/?id=1084748042"
  570. s.Parent = game.Lighting
  571.  
  572. local s = Instance.new("Sound")
  573.  
  574. s.Name = "Sound"
  575. s.SoundId = "http://www.roblox.com/asset/?id=915288747"
  576. s.Volume = 10
  577. s.Looped = true
  578. s.archivable = false
  579.  
  580. s.Parent = nubland
  581.  
  582. wait(0.1)
  583.  
  584. s:play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement