Advertisement
Josemmoya

ewewweew

Jul 14th, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. --[[memey fe red car killer script (if u on fe game, this fe script will show up on all player's screens, not only yours)
  2. credits: Josemmoya
  3. idea by: skidma's thomas dank engine
  4. script version: 1.0 (meaning ill remaster it soon lol)
  5. note: change josemmoya to ur roblox username lel
  6. ]]--
  7. print("memey fe red car killer script (if u on fe game, this fe script will show up on all player's screens, not only yours)")
  8. print("credits: Josemmoya")
  9. print ("idea by: skidma's thomas dank engine")
  10. print ("script version: 1.0 (meaning ill remaster it soon lol)")
  11. print("note: change josemmoya to ur roblox username lel")
  12. local p = game.Workspace.Josemmoya2
  13. local train = game.Workspace.Josemmoya2.Torso
  14. local TrainMesh = Instance.new("SpecialMesh",train)
  15. TrainMesh.MeshType = Enum.MeshType.FileMesh
  16. TrainMesh.Scale = Vector3.new(9, 9, 9)
  17. TrainMesh.MeshId = "rbxassetid://693526472"
  18. TrainMesh.TextureId = "rbxassetid://3973208"
  19. p.Humanoid.WalkSpeed = 150;
  20. --Variables--
  21. local Brick = game.Workspace.Josemmoya2.Torso
  22. --End--
  23.  
  24. --Code--
  25. local function PlayerTouched(Part)
  26. local Parent = Part.Parent
  27. if game.Players:GetPlayerFromCharacter(Parent) then
  28. Parent:BreakJoints()
  29. print ("there u go")
  30. end
  31. end
  32.  
  33. Brick.Touched:connect(PlayerTouched)
  34.  
  35. print("its fuck up time!")
  36. -- By Dylxan, PM me if you have any questions! --
  37. while true do
  38. --Declare Variables
  39. local sound = Instance.new("Sound")
  40. local soundID = 2076648232 --Sound ID
  41. local volume = 10 --Volume
  42. local pitch = 1 --Pitch
  43. local looped = true --Set to false if you dont want it looped
  44. local name = "despacito"--Doesnt matter
  45. local parent = game.Workspace.Josemmoya2.Torso
  46. --Main script, don't touch unless you know what your doing
  47. sound.Parent = (parent)
  48. sound.SoundId = "http://www.roblox.com/asset/?id="..soundID..""
  49. sound.Pitch = pitch
  50. sound.Volume = volume
  51. sound.Name = name
  52. sound.Looped = looped
  53. sound:play()
  54. break
  55. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement