Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- topkeklel
- --[[
- BigBrianScript:
- By: TailsTheFox075
- Features: Changes your character to Big Brian from BFED
- Version: 1.0.0.2
- --]]
- local p = game.Players.LocalPlayer.Character
- local weld = Instance.new("Weld",p.Torso)
- weld.Part0 = p.Torso
- local horse = Instance.new("Part",p.Torso)
- horse.Anchored = true
- horse.CanCollide = false
- horse.Transparency = "1"
- horse.Size = Vector3.new(5,5,5)
- horse.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
- weld.Part1 = horse
- weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(0,math.rad(180),0)
- horse.Anchored = false
- local BigBrian = Instance.new("Decal",horse)
- BigBrian.Texture = "rbxassetid://321884208"
- p.Humanoid.WalkSpeed = 60;
- for i,v in pairs(p:GetChildren()) do
- if v:IsA("Part") then
- v.Transparency = 1;
- elseif v:IsA("Hat") then
- v:Destroy()
- elseif v:IsA("Model") then
- v:Destroy()
- end
- end
- local function SFX(id) local s=Instance.new("Sound",p.Torso); s.SoundId = "rbxassetid://"..id; s.Volume = 994; return s; end
- horse.Touched:connect(function(p)
- if p.Parent then
- if p.Parent:IsA("Model") then
- if game.Players:FindFirstChild(p.Parent.Name) then
- if p.Parent.Name ~= game.Players.LocalPlayer.Name then
- game.Players:FindFirstChild(p.Parent.Name).Character:BreakJoints()
- local Whistle = SFX(138109742)
- Whistle:Play()
- end
- end
- end
- end
- end)
- local Music = SFX(163531128)
- Music.Looped = true;
- wait(1)
- Music:Play();
- -- ~Topkeklel 2016
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement