brumak
|
  |
| Joined: 08 Jan 2009 |
| Total Posts: 118 |
|
|
| 18 Apr 2015 03:49 PM |
Ill pay someone 50rs if they can help me get this to work Basically i want it when i click the mouse button to run i want the trail to activate behind me.
walkingSpeed = 16 runningSpeed = 250 Walk = 0 -- Bin = script.Parent
function onButton1Down(mouse) Walk = 0 while Walk == 0 do wait(.05) game.Players.localPlayer.Character.Humanoid.WalkSpeed = runningSpeed end game.Players.localPlayer.Character.Humanoid.WalkSpeed = walkingSpeed end
function onButton1Up(mouse) Walk = 1 end
function onSelected(mouse) mouse.Button1Down:connect(function() onButton1Down(mouse) end) mouse.Button1Up:connect(function() onButton1Up(mouse) end) end Bin.Selected:connect(onSelected)
--Made by Fusroblox --Stickmasterluke was here last. --Rescripted by Luckymaxer
Tool = script.Parent
Debris = game:GetService("Debris")
function StartTrail(Source, Parent) local TrailParts = {} local SourceAlive = true local Color = BrickColor.new("Bright red")
local NumberOfParts = 60 local LastPoint = (Source.CFrame * CFrame.new(0, 0, 4)).p Source.Changed:connect(function(Property) if Property == "Parent" and not Source.Parent then SourceAlive = false end end) while SourceAlive do local CurrentPoint = (Source.CFrame * CFrame.new(0, 0, 4)).p if Source.Velocity.magnitude > 20 then local TrailPart = Instance.new("Part") TrailPart.Name = "LightTrail" TrailPart.BrickColor = Color TrailPart.Transparency = 0.2 TrailPart.Material = Enum.Material.Plastic pcall(function() TrailPart.Material = Enum.Material.SmoothPlastic end) TrailPart.Shape = Enum.PartType.Block for i, v in pairs({"TopSurface", "BottomSurface", "FrontSurface", "BackSurface", "LeftSurface", "RightSurface"}) do TrailPart[v] = Enum.SurfaceType.SmoothNoOutlines end TrailPart.Size = Vector3.new(0.3, 5, 3) TrailPart.Locked = true TrailPart.Anchored = true TrailPart.CanCollide = false local Light = Instance.new("PointLight") Light.Color = BrickColor.new("Bright red)").Color Light.Parent = TrailPart table.insert(TrailParts, TrailPart) TrailPart.Parent = Parent TrailPart.Size = Vector3.new(0.3, 5, (CurrentPoint - LastPoint).magnitude) TrailPart.CFrame = CFrame.new(((CurrentPoint + LastPoint)* 0.5), LastPoint) if #TrailParts > NumberOfParts then local TrailPart = TrailParts[1] if TrailPart and TrailPart.Parent then TrailPart:Destroy() end table.remove(TrailParts, 1) end else local TrailPart = TrailParts[1] if TrailPart and TrailPart.Parent then TrailPart:Destroy() end table.remove(TrailParts, 1) end LastPoint = CurrentPoint wait(0.025) end for i, v in pairs(TrailParts) do if v and v.Parent then v:Destroy() end end end
Tool.ChildAdded:connect(function(Child) if Child.Name == "FakeHandle" then Spawn(function() StartTrail(Child, Tool) end) end end)
------ Script made by uconnjacob
|
|
|
| Report Abuse |
|
|
|
| 18 Apr 2015 03:51 PM |
^^^^^^^^^
I cant help with free models. |
|
|
| Report Abuse |
|
|
9draco
|
  |
| Joined: 13 Nov 2010 |
| Total Posts: 5841 |
|
|
| 18 Apr 2015 03:52 PM |
| Other then it's a wrong forum, did you even do any of this or is it 100% FM? |
|
|
| Report Abuse |
|
|
brumak
|
  |
| Joined: 08 Jan 2009 |
| Total Posts: 118 |
|
|
| 18 Apr 2015 03:53 PM |
| You see how in the title im paying for help with a script. Im not asking if you cant work with free models. Next time think before posting a comment that has nothing to do with what i asked and isn't helpful at all. |
|
|
| Report Abuse |
|
|
| |
|
9draco
|
  |
| Joined: 13 Nov 2010 |
| Total Posts: 5841 |
|
|
| 18 Apr 2015 03:55 PM |
| That's why I added a percentage and asked if you did ANY or 100% FM, and it's the wrong forum so gtfo. |
|
|
| Report Abuse |
|
|
brumak
|
  |
| Joined: 08 Jan 2009 |
| Total Posts: 118 |
|
|
| 18 Apr 2015 03:55 PM |
| what do you think draco. Considering im asking for help. |
|
|
| Report Abuse |
|
|
|
| 18 Apr 2015 03:56 PM |
Pssssshhhhh I got his.
wiki.roblox.com
"Boom" |
|
|
| Report Abuse |
|
|
9draco
|
  |
| Joined: 13 Nov 2010 |
| Total Posts: 5841 |
|
|
| 18 Apr 2015 03:56 PM |
| Ok I'm wrong and so are you, now kindly, gtfo. |
|
|
| Report Abuse |
|
|
| |
|
droy
|
  |
| Joined: 19 May 2008 |
| Total Posts: 286 |
|
|
| 18 Apr 2015 03:57 PM |
If you did make this, you wouldn't need a whole forum to help you figure out a simple problem.
Droy || Graphic Desiger || Founder of Metados |
|
|
| Report Abuse |
|
|
brumak
|
  |
| Joined: 08 Jan 2009 |
| Total Posts: 118 |
|
|
| 18 Apr 2015 03:57 PM |
| Send me right forum before saying gtfo. Creepwan. |
|
|
| Report Abuse |
|
|
9draco
|
  |
| Joined: 13 Nov 2010 |
| Total Posts: 5841 |
|
| |
|
brumak
|
  |
| Joined: 08 Jan 2009 |
| Total Posts: 118 |
|
|
| 18 Apr 2015 03:58 PM |
| exactly droy. I never said i made this. Look at the bottom. I actually combined 2 scripts. a trial script and a run script. |
|
|
| Report Abuse |
|
|
9draco
|
  |
| Joined: 13 Nov 2010 |
| Total Posts: 5841 |
|
|
| 18 Apr 2015 03:59 PM |
| It's been 6 years and I just noticed that my name seems odd.. |
|
|
| Report Abuse |
|
|
|
| 18 Apr 2015 04:01 PM |
"------ Script made by uconnjacob"
Jayson13 wasn't here |
|
|
| Report Abuse |
|
|
droy
|
  |
| Joined: 19 May 2008 |
| Total Posts: 286 |
|
|
| 18 Apr 2015 04:03 PM |
perfect forum for this - wiki.roblox.com
Droy || Graphic Desiger || Founder of Metados |
|
|
| Report Abuse |
|
|
brumak
|
  |
| Joined: 08 Jan 2009 |
| Total Posts: 118 |
|
|
| 18 Apr 2015 04:03 PM |
| Jesus christ. Im saying i will pay you to help me. And you are complaining that its a free model. |
|
|
| Report Abuse |
|
|
9draco
|
  |
| Joined: 13 Nov 2010 |
| Total Posts: 5841 |
|
|
| 18 Apr 2015 04:04 PM |
@jayson. www.roblox.com/Forum/ShowPost.aspx?PostID=160387498
Check this out. |
|
|
| Report Abuse |
|
|
9draco
|
  |
| Joined: 13 Nov 2010 |
| Total Posts: 5841 |
|
|
| 18 Apr 2015 04:05 PM |
| Brumak, just get out already. |
|
|
| Report Abuse |
|
|
brumak
|
  |
| Joined: 08 Jan 2009 |
| Total Posts: 118 |
|
| |
|
droy
|
  |
| Joined: 19 May 2008 |
| Total Posts: 286 |
|
|
| 18 Apr 2015 04:07 PM |
50 Robux is nothing to experienced developers.
Droy || Graphic Desiger || Founder of Metados |
|
|
| Report Abuse |
|
|
9draco
|
  |
| Joined: 13 Nov 2010 |
| Total Posts: 5841 |
|
|
| 18 Apr 2015 04:07 PM |
| You do no now one is helping you in this forum, and once Chim, eLunate, or the others are on, you will get flamed so much you will be burned, so gtfo to LMaD. |
|
|
| Report Abuse |
|
|
brumak
|
  |
| Joined: 08 Jan 2009 |
| Total Posts: 118 |
|
|
| 18 Apr 2015 04:09 PM |
| Draco. you can keep posting. but fortunately for me i don't get burned on roblox. And it doesn't take a experienced developer to do what im asking. i could do it but im too lazy. |
|
|
| Report Abuse |
|
|
9draco
|
  |
| Joined: 13 Nov 2010 |
| Total Posts: 5841 |
|
|
| 18 Apr 2015 04:10 PM |
"I don't get burned in roblox"
As fishguy what happened XD |
|
|
| Report Abuse |
|
|