Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

The Collisiongroup not found?

Asked by 6 years ago
Edited 6 years ago
01local PhysicsService = game:GetService("PhysicsService")
02 
03local forcefield1 = game.Workspace.Collision.WashmachineSepcial.Fenster
04local forcefield2 = game.Workspace.Collision.MEGAWONDERS.Fenster
05local forcefield3 = game.Workspace.Collision.Washmachine5.Fenster
06local crate = game.Workspace.Collision.WashmachineSepcial.Unanchored:GetChildren()
07local crate2 = game.Workspace.Collision.MEGAWONDERS.minWONDERS:GetChildren()
08local crate3 = game.Workspace.Collision.Washmachine5.Unanchored:GetChildren()
09local crate4 = game.Workspace.Collision.MEGAWONDERS.Washmachine1WONDERS:GetChildren()
10 
11 
12local forceFieldGroup = "ForceFieldGroup"
13local crateGroup = "CrateGroup"
14 
15PhysicsService:CreateCollisionGroup(forceFieldGroup)
View all 21 lines...

I'm trying to make objects not going through a window but players can go through a window. I'm getting the error - Collision Group does not exist. - Stack Begin - Script 'Workspace.Script', Line 18 - Stack End

1 answer

Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

Collision isnt a valid member of workspace, so it doesnt exist in workspace, but you could do this:

1script.Parent.Touched:connect(function(plr)
2    local player = game.Players.LocalPlayer
3 
4    if plr.Parent.Name == player.Name or plr.Parent.Parent == player.Character then
5       script.Parent.CanCollide = false
6 elseif plr.Parent.Parent == workspace then
7       script.Parent.CanCollide = true
8    end
9end)
0
no offense, but it looks like you just put a bunch of random things together, because it looks really messed up lol User#23365 30 — 6y
0
No! The big washmachines are in the model collision and i dont want people to stay at door and let everything out just to camp Lolamtic 63 — 6y
0
i dont get it User#23365 30 — 6y
0
kingdom5 solved it so easily Lolamtic 63 — 6y
View all comments (3 more)
0
i cant do crate1, crate2, and :GetAllChildren() all one by one Lolamtic 63 — 6y
0
all of it looks like properties User#23365 30 — 6y
0
and u dont explain very well lol User#23365 30 — 6y
Ad

Answer this question