Advertisement
miguel1131

best scipt

Nov 10th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. -- topkeklel
  2. --[[
  3. BigBrianScript:
  4. By: TailsTheFox075
  5. Features: Changes your character to Big Brian from BFED
  6. Version: 1.0.0.2
  7. --]]
  8.  
  9. local p = game.Players.LocalPlayer.Character
  10. local weld = Instance.new("Weld",p.Torso)
  11. weld.Part0 = p.Torso
  12.  
  13. local horse = Instance.new("Part",p.Torso)
  14. horse.Anchored = true
  15. horse.CanCollide = false
  16. horse.Transparency = "1"
  17. horse.Size = Vector3.new(5,5,5)
  18. horse.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  19. weld.Part1 = horse
  20. weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(0,math.rad(180),0)
  21. horse.Anchored = false
  22. local BigBrian = Instance.new("Decal",horse)
  23. BigBrian.Texture = "rbxassetid://321884208"
  24.  
  25. p.Humanoid.WalkSpeed = 60;
  26.  
  27.  
  28. for i,v in pairs(p:GetChildren()) do
  29. if v:IsA("Part") then
  30. v.Transparency = 1;
  31. elseif v:IsA("Hat") then
  32. v:Destroy()
  33. elseif v:IsA("Model") then
  34. v:Destroy()
  35. end
  36. end
  37.  
  38. local function SFX(id) local s=Instance.new("Sound",p.Torso); s.SoundId = "rbxassetid://"..id; s.Volume = 994; return s; end
  39. horse.Touched:connect(function(p)
  40. if p.Parent then
  41. if p.Parent:IsA("Model") then
  42. if game.Players:FindFirstChild(p.Parent.Name) then
  43. if p.Parent.Name ~= game.Players.LocalPlayer.Name then
  44. game.Players:FindFirstChild(p.Parent.Name).Character:BreakJoints()
  45. local Whistle = SFX(138109742)
  46. Whistle:Play()
  47. end
  48. end
  49. end
  50. end
  51. end)
  52.  
  53. local Music = SFX(163531128)
  54. Music.Looped = true;
  55. wait(1)
  56. Music:Play();
  57. -- ~Topkeklel 2016
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement