|
| 29 Aug 2016 05:14 AM |
| Hey, i have a problem with my game. I have a dropper that drops items onto a conveyor belt, which is fine, but when they ### ###### into a vehicle the blocks become solid and wont move, the vehicle will still move untill a part touches the block, but then when it doe it stops. I have added Anchored = false to the code aswell and that doesnt help, can collide on and off neither work. Can someone help please. Thanks |
|
|
| Report Abuse |
|
|
|
| 29 Aug 2016 05:15 AM |
the #'s should say get moved
|
|
|
| Report Abuse |
|
|
|
| 29 Aug 2016 06:26 AM |
anyone please? now the forums are working again
|
|
|
| Report Abuse |
|
|
|
| 29 Aug 2016 11:18 AM |
no one knows? ok.
Well for those who have played lumber tycoon 2, its the same as if someone puts their item in your truck and you try to drive off, thats happening...now can someone help!
|
|
|
| Report Abuse |
|
|
| |
|
|
| 29 Aug 2016 01:51 PM |
Do you have any scripts?
It sounds like you are anchoring it. Simple as that. |
|
|
| Report Abuse |
|
|
SelDraken
|
  |
| Joined: 10 Jul 2010 |
| Total Posts: 77 |
|
|
| 29 Aug 2016 01:51 PM |
| Explain a little more, when the parts are moved onto the vehicle, the vehicle stops moving, and only moves when there are no parts on it? If that is the case, then it might be that the parts are too 'heavy' try adjusting their mass ... idk what its called in properties, but make them plastic or something really light, and see if that helps. What are your parts exactly, do they have any children? |
|
|
| Report Abuse |
|
|
|
| 30 Aug 2016 02:43 AM |
The scripts are the same as any generic dropper for a tycoon. I just added a count function so it stops at 50 drops as it lags if there's too many parts.
Yes, that's right. It's a train basically, it has coal hoppers on it that the parts come off a conveyor and go into the train hoppers. Your then meant to drive the train to the refinery to earn money. The train goes fine when it is empty no problems but as soon as 1 item goes in the hopper the train will not move past that drop. The part stays still and the train moves around it (like a blacklisted player puts an item in your truck in lumber tycoon 2) I haven't changed any of the properties for the part so guess it is set to plastic as that is default. The script just changes color and unanchors it.
Thanks Rich |
|
|
| Report Abuse |
|
|
|
| 30 Aug 2016 02:44 AM |
| Forgot to add, the parts are just 1,1,1 balls with an intvalue for how much they are worth |
|
|
| Report Abuse |
|
|
|
| 30 Aug 2016 07:27 AM |
| I will post the script when I get home in about 5 hours if anyone thinks it will help |
|
|
| Report Abuse |
|
|
|
| 31 Aug 2016 04:43 PM |
parts = script.Parent.Parent.Parent.DROPS while true do if script.Parent.Parent.Parent.Configuration.Active.Value == true then local y = Instance.new("Part", script.Parent.Parent.Parent.DROPS) local cash = Instance.new("IntValue",y) cash.Name = "Cash" cash.Value = 10 * game.Players.NumPlayers y.Shape = script.Parent.Shape y.Size = script.Parent.Size y.Position = script.Parent.Position y.BrickColor = script.Parent.BrickColor y.Anchored = false y.CanCollide = false end wait(script.Parent.Parent.Parent.Configuration.Interval.Value) local children = parts:GetChildren() for i = 1, #children do if i >= 50 then script.Parent.Parent.Parent.Configuration.Active.Value = false else end end end
|
|
|
| Report Abuse |
|
|
|
| 01 Sep 2016 10:56 AM |
all these views and still no one knows?
|
|
|
| Report Abuse |
|
|
|
| 01 Sep 2016 11:00 AM |
so the issue is that the blocks become anchored when you move them through a script?
|
|
|
| Report Abuse |
|
|
|
| 01 Sep 2016 11:03 AM |
well, thats what i thought, but i just tried a bog standard dropper script, to drop a part into the trailer and it still stops as if it is anchored, but it isnt.
The odd thing is, it only happens on live servers, i.e it works fine in studio when i "play" it, but as soon as its published and played from a place visit, it wont move.
|
|
|
| Report Abuse |
|
|
|
| 01 Sep 2016 11:03 AM |
https://www.roblox.com/games/477018506/WIP-Team-Mining-Tycoon
heres the link if you want to come and check it out for yourself.
|
|
|
| Report Abuse |
|
|
|
| 01 Sep 2016 11:05 AM |
that's usually because you are using scripts or local scripts incorrectly
use start server to debug your code, not play solo |
|
|
| Report Abuse |
|
|
|
| 01 Sep 2016 11:06 AM |
but when i do that no errors show up so i cant debug as it doesn't tell me anything.
|
|
|
| Report Abuse |
|
|
|
| 01 Sep 2016 11:08 AM |
the balls aren't anchored
your train thing glitches out with balls in it idk why |
|
|
| Report Abuse |
|
|
|
| 01 Sep 2016 11:09 AM |
| try just placing a block in your train and see if it drives, I think the problem is with the train |
|
|
| Report Abuse |
|
|
|
| 01 Sep 2016 11:09 AM |
yea but ive used free models too its exactly the same with every single vehicle i try, which is why i dont think its that, but thanks for trying
|
|
|
| Report Abuse |
|
|
|
| 01 Sep 2016 11:10 AM |
ok will try it and post once ive tried
|
|
|
| Report Abuse |
|
|
|
| 01 Sep 2016 11:13 AM |
ok, so putting a block in there from studio is the same, works fine in studio solo play, but nothing on a roblox server, same as from a drop
|
|
|
| Report Abuse |
|
|
|
| 01 Sep 2016 01:07 PM |
its more annoying that no one knows how to help lol
|
|
|
| Report Abuse |
|
|
|
| 03 Sep 2016 02:36 PM |
lets try a bump, see if theres someone on tonight hwo knows how to fix problems!!
|
|
|
| Report Abuse |
|
|