ZeyadSamer1

Untitled

May 9th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.78 KB | None | 0 0
  1. local lp = game.Players.ZeyadSamer1
  2. local chr = lp.Character
  3. local euler = CFrame.fromEulerAnglesXYZ
  4. local rad = math.rad
  5. local trso = chr.Torso
  6. local la = Instance.new("Weld",chr['Left Arm'])
  7. la.Part0=chr['Left Arm']
  8. la.Part1=chr.Torso
  9. la.C0=CFrame.new(1.5,0,0)
  10. local rot = 0
  11.  
  12. local ContentProvider = Game:GetService("ContentProvider")
  13.  
  14. local function LoadAssets(AssetList)
  15. -- Takes an asset list and preloads it. Will not wait for them to load.
  16.  
  17. for _, AssetId in pairs(AssetList) do
  18. ContentProvider:Preload("http://www.roblox.com/asset/?id=" .. AssetId)
  19. end
  20. end
  21.  
  22. LoadAssets({203654824, 192187815, 179678714, 193107910, 187990139})
  23.  
  24.  
  25.  
  26.  
  27. if chr:FindFirstChild("Shirt") then
  28. chr.Shirt:destroy()
  29. end
  30.  
  31. if chr:FindFirstChild("Pants") then
  32. chr.Pants:destroy()
  33. end
  34.  
  35. colors = chr['Body Colors']
  36.  
  37. colors.HeadColor = BrickColor.new("Brown")
  38. colors.TorsoColor = BrickColor.new("Brown")
  39. colors.LeftArmColor = BrickColor.new("Brown")
  40. colors.RightArmColor = BrickColor.new("Brown")
  41. colors.LeftLegColor = BrickColor.new("Brown")
  42. colors.RightLegColor = BrickColor.new("Brown")
  43.  
  44.  
  45. local face = chr.Head:FindFirstChild("face")
  46.  
  47. if face then
  48. face.Texture = "http://www.roblox.com/asset/?id=187990139"
  49. end
  50.  
  51. for i,v in pairs(chr:children()) do
  52. if v.ClassName == "Hat" then
  53. print(v.Name.." has been removed, #baldforbieber")
  54. v:destroy()
  55. end
  56. end
  57.  
  58.  
  59.  
  60.  
  61.  
  62. local hd = Instance.new("Weld",chr.Head)
  63. hd.Part0=chr.Head
  64. hd.Part1=chr.Torso
  65. hd.C0=CFrame.new(0,-1.5,0)
  66.  
  67.  
  68. hum = chr.Humanoid
  69.  
  70.  
  71.  
  72. function CreateMesh(parent, id, x, y, z, texture)
  73. local m=Instance.new("SpecialMesh", parent)
  74. m.MeshType = "FileMesh"
  75. m.MeshId="http://www.roblox.com/asset/?id="..id
  76. if texture ~= nil then
  77. m.TextureId="http://www.roblox.com/asset/?id="..texture
  78. end
  79. m.Scale = Vector3.new(x,y,z)
  80. end
  81.  
  82. Microphone=function()
  83. mic = Instance.new("Part", chr)
  84. CreateMesh(mic, 43996479, 0.3, 0.3, 0.3, 43997070)
  85. mic.Name = "Microphone"
  86. mic.Locked = true
  87. mic.CanCollide=true
  88. mic.Size=Vector3.new(1,1,1)
  89. micw = Instance.new("Weld",mic)
  90. micw.Part0=mic
  91. micw.Part1=chr['Left Arm']
  92. micw.C0=CFrame.new(0,0,0)
  93. micw.C1=euler(rad(0),rad(0),rad(0))
  94. end
  95.  
  96. Hat=function()
  97. hat = Instance.new("Part", chr)
  98. CreateMesh(hat, 1028713, 1, 1, 1)
  99. hat.Name = "Top hat"
  100. hat.Locked = true
  101. hat.BrickColor = BrickColor.new("Really black")
  102. hat.CanCollide=true
  103. hat.Size=Vector3.new(1,1,1)
  104. hatw = Instance.new("Weld",hat)
  105. hatw.Part0=hat
  106. hatw.Part1=chr['Head']
  107. hatw.C0=CFrame.new(0,-0.7,0)
  108. hatw.C1=euler(rad(0),rad(0),rad(0))
  109. end
  110.  
  111. Hat()
  112. Microphone()
  113.  
  114.  
  115. function Name(msg)
  116. if hat.Parent then
  117. pcall(function()
  118. local Gui = Instance.new('BillboardGui', hat)
  119. Gui.ExtentsOffset = Vector3.new(0,1.5,0)
  120. Gui.Size = UDim2.new(0,200,0,300)
  121. local Frame = Instance.new('Frame',Gui)
  122. Frame.BackgroundTransparency = 1
  123. Frame.Size = UDim2.new(1,0,1,0)
  124. local Txt = Instance.new('TextLabel',Frame)
  125. Txt.BackgroundTransparency = 1
  126. Txt.Size = UDim2.new(1,0,1,0)
  127. Txt.Font = 'ArialBold'
  128. Txt.FontSize = 'Size24'
  129. Txt.Text = msg
  130. Txt.TextColor3 = BrickColor.new("Brown").Color
  131. Txt.TextStrokeColor3 = Color3.new(0/255,0/255,0/255)
  132. Txt.TextStrokeTransparency = .5
  133. Txt.TextWrapped = true
  134. Txt.TextScaled = false
  135. end)
  136. else
  137. end
  138. end
  139.  
  140. function Chat(msg) -- Credit to jillmiles1, kthxbye
  141. if hat.Parent then
  142. pcall(function()
  143. if hat:FindFirstChild("Fazbear Chat Gui") then
  144. hat['Fazbear Chat Gui']:destroy()
  145. end
  146. local Gui = Instance.new('BillboardGui', hat)
  147. Gui.Name = "Fazbear Chat Gui"
  148. Gui.ExtentsOffset = Vector3.new(0,3,0)
  149. Gui.Size = UDim2.new(0,200,0,300)
  150. local Frame = Instance.new('Frame',Gui)
  151. Frame.BackgroundTransparency = 1
  152. Frame.Size = UDim2.new(1,0,1,0)
  153. local Txt = Instance.new('TextLabel',Frame)
  154. Txt.BackgroundTransparency = 1
  155. Txt.Size = UDim2.new(1,0,1,0)
  156. Txt.Font = 'ArialBold'
  157. Txt.Name = "ChatGui"
  158. Txt.FontSize = 'Size24'
  159. Txt.Text = ''
  160. Txt.TextColor3 = BrickColor.new("Brown").Color
  161. Txt.TextStrokeColor3 = Color3.new(0/255,0/255,0/255)
  162. Txt.TextStrokeTransparency = .5
  163. Txt.TextWrapped = true
  164. Txt.TextScaled = false
  165. delay(wait(),function()
  166. for v = 1, #msg do
  167. Txt.Text=string.sub(msg,1,v)
  168. wait(.07)
  169. end;
  170. wait(1)
  171. for v = 1, #Txt.Text do
  172. Txt.Text=string.sub(msg,-1,v)
  173. wait(.05)
  174. end;
  175. Gui:remove()
  176. end)
  177. end)
  178. else
  179. end
  180. end
  181.  
  182.  
  183. local crouch = function()
  184. la.C1=euler(rad(-90),rad(0),rad(0))
  185. hd.C1=euler(rad(0),rad(-3),rad(10))
  186. micw.C1=euler(rad(0),rad(0),rad(0))
  187. micw.C0=CFrame.new(0,-1,0)
  188. la.C0=CFrame.new(1.5,-.5,-.5)
  189. end
  190.  
  191. local stand = function()
  192. la.C1=euler(rad(0),rad(0),rad(0))
  193. hd.C1=euler(rad(0),rad(0),rad(0))
  194. micw.C1=euler(rad(180),rad(0),rad(0))
  195. la.C0=CFrame.new(1.5,0,0)
  196. micw.C0=CFrame.new(0,-1,0)
  197. end
  198.  
  199. function PlaySound(id, pitch, looped)
  200. epicsound = Instance.new("Sound")
  201. epicsound.Name = "FazbearSound"
  202. epicsound.SoundId = "rbxassetid://"..id
  203. epicsound.Volume = 1
  204. epicsound.Pitch = pitch
  205. if looped == nil then
  206. looped = true
  207. else
  208. looped = looped
  209. end
  210. wait()
  211. epicsound.Looped = looped
  212. epicsound.Parent = workspace
  213. if epicsound.SoundId=="rbxassetid://tt" then -- TELL ME, TELL ME, WHERE DA FREAKS AT!
  214. epicsound.SoundId="rbxassetid://181158033"
  215. elseif epicsound.SoundId=="rbxassetid://fabulous" then -- FA-FA-FABULOUS!
  216. epicsound.SoundId="rbxassetid://191819419"
  217. elseif epicsound.SoundId=="rbxassetid://ufdb" then -- ultimate final death battle(fairy tail XD)
  218. epicsound.SoundId="rbxassetid://153085393"
  219. elseif epicsound.SoundId=="rbxassetid://nnm" then
  220. epicsound.SoundId="rbxassetid://210189234"
  221. elseif epicsound.SoundId=="rbxassetid://tun" then -- tunak tunak tun
  222. epicsound.SoundId="rbxassetid://162682002"
  223. elseif epicsound.SoundId=="rbxassetid://zelda" then
  224. epicsound.SoundId="rbxassetid://158215156"
  225. elseif epicsound.SoundId=="rbxassetid://cc" then
  226. epicsound.SoundId="rbxassetid://177080835"
  227. end
  228. es=epicsound:clone()
  229. es:Stop()
  230. es.Parent = chr.Torso
  231. wait()
  232. es:Play()
  233. end
  234.  
  235. hum.WalkSpeed=50
  236. hum.MaxHealth = math.huge
  237. hum.Health = math.huge
  238.  
  239.  
  240. lp.Chatted:connect(function(msg)
  241. Chat(msg)
  242. end)
  243.  
  244. goldie=true
  245. crouch()
  246.  
  247. function StopMusic()
  248. if chr.Torso:FindFirstChild("FazbearSound") then
  249. if chr.Torso.FazbearSound.ClassName == "Sound" then
  250. chr.Torso.FazbearSound:Stop()
  251. wait()
  252. chr.Torso.FazbearSound:Destroy()
  253. end
  254. end
  255. end
  256.  
  257. Name("Freddy Fazbear")
  258.  
  259.  
  260. mouse.KeyDown:connect(function(key)
  261. if key == "g" then
  262. if goldie==false then
  263. goldie=true
  264. crouch()
  265. elseif goldie==true then
  266. goldie=false
  267. stand()
  268. end
  269. elseif key == "r" then -- Plays a song
  270. StopMusic()
  271. PlaySound(203654824, 1, true)
  272. Chat("Now Playing: The Show Must Go On - FNAF | 203654824")
  273. elseif key == "f" then -- Plays a song
  274. StopMusic()
  275. PlaySound(192187815, 1, true)
  276. Chat("Now Playing: Fnaf 2: It's Been so Long | 192187815")
  277. elseif key == "l" then -- Plays a laugh
  278. StopMusic()
  279. PlaySound(179678714, 0.39, false)
  280. Chat("*laugh*")
  281. elseif key == "v" then -- Plays a scream
  282. StopMusic()
  283. PlaySound(193107910, 1, false)
  284. Chat("*screams*")
  285. elseif key == "q" then -- Stops any sound(s) playing from your torso
  286. StopMusic()
  287. Chat("All sounds stopped!")
  288. end
  289. end)
  290.  
  291.  
  292.  
  293. hum.Died:connect(function()
  294. es.Pitch = 10
  295. wait()
  296. es:Pause()
  297. es:Stop()
  298. es.Name = "Ded"
  299. wait()
  300. es:Destroy()
  301. end)
Add Comment
Please, Sign In to add comment