KapKing47Join Date: 2012-09-09 Post Count: 5522 |
If ur using a LocalScript for this then just remove Region3 and use my code, if ur using a ServerScript then loop through the players and use my code, simple :P
Btw, sry about forgetting to tell u, limit_X and limit_Z are how much studs u can be away from the center itself... also, where is compares the x axises and z axises I put an "and" between them, replace that with an "or"
"My Life is going Good... but..." |
|
|
I'm glad u made a suggestion and also im using a regular script and how do I loop through the player? |
|
KapKing47Join Date: 2012-09-09 Post Count: 5522 |
for i, plr in pairs(game.Players:GetPlayers()) do --Ur now looping through all the players, now just pretend that ur telling the script about a specific player, and use plr as the player variable
local char = plr.Character --Here we have the character of the player
--do stuff
end
"My Life is going Good... but..." |
|
|
do I add this to my current script or change my script?
|
|
|
local Point1 = Vector3.new(93.75, 0.503, 121.619)
local Point2 = Vector3.new(150.94, 15.872, 181.669)
local Region = Region3.new(Point1,Point2)
while wait() do
for _i,v in pairs(game.Workspace:FindPartsInRegion3(Region,nil,9999)) do
for i, plr in pairs(game.Players:GetPlayers()) do
if v.Name == "Torso" then
print(v.Parent.Name)
print(v.Parent.Name.." Is in the Club")
if not game.Players:GetPlayerFromCharacter(v.Parent).PlayerGui:FindFirstChild("BecomeDJ") then
script.Parent.BecomeDJ:Clone().Parent = game.Players:GetPlayerFromCharacter(v.Parent).PlayerGui
game.Players:GetPlayerFromCharacter(v.Parent).PlayerGui.music.Volume = "0.5"
else
game.Players[plr.Name].PlayerGui.BecomeDJ:Destroy()
end
end
end
end
end
this is what I have now but it constantly adds and deletes the button |
|
|
KapKing47Join Date: 2012-09-09 Post Count: 5522 |
Um... u clearly don't get it? CHANGE the WHOLE thing :P
for i, plr in pairs(game.Players:GetPlayers()) do
local t = plr.Character.Torso
--use my comparison code I gave before to find out if he's outside or inside
if not plr.PlayerGui:FindFirstChild('NameHere') then --Replace NameHere with the name of the gui ur looking for
--Clone the gui from somewhere and add it in
end
that's ALL the script needs to have :P Delete ur current code and add this in, and of course change :P I'm not gonna make the whole script for u as this forum is not for requests :P
"My Life is going Good... but..." |
|
|
local limit_X = 100
local limit_Z = 100
for i, plr in pairs(game.Players:GetPlayers()) do
local t = plr.Character.Torso
if math.abs(t.Position.X - game.Workspace.Center.Position.X) > limit_X and math.abs(t.Position.Z - game.Workspace.Center.Position.Z) > limit_Z then
plr.PlayerGui.BecomeDJ:Destroy()
if not math.abs(t.Position.X - game.Workspace.Center.Position.X) > limit_X and not math.abs(t.Position.Z - game.Workspace.Center.Position.Z) > limit_Z then
if not plr.PlayerGui:FindFirstChild('BecomeDJ') then
script.Parent.BecomeDJ:Clone().Parent = plr.PlayerGui
end
end
end
end
this is what I have now but its not doing anything |
|
KapKing47Join Date: 2012-09-09 Post Count: 5522 |
Yeah but don't forget, I told u to change it
if math.abs(t.Position.X - game.Workspace.Center.Position.X) > limit_X and math.abs(t.Position.Z - game.Workspace.Center.Position.Z) > limit_Z then
to this
if math.abs(t.Position.X - game.Workspace.Center.Position.X) > limit_X or math.abs(t.Position.Z - game.Workspace.Center.Position.Z) > limit_Z then
"My Life is going Good... but..." |
|
|
Magnitude probably wouldn't work. Unless the building is cylindrical, of course. ^.^ |
|
|
the building isnt cylindrical
|
|
|
local limit_X = 100
local limit_Z = 100
for i, plr in pairs(game.Players:GetPlayers()) do
local t = plr.Character.Torso
if math.abs(t.Position.X - game.Workspace.Center.Position.X) > limit_X or math.abs(t.Position.Z - game.Workspace.Center.Position.Z) > limit_Z then
plr.PlayerGui.BecomeDJ:Destroy()
if not math.abs(t.Position.X - game.Workspace.Center.Position.X) > limit_X or not math.abs(t.Position.Z - game.Workspace.Center.Position.Z) > limit_Z then
if not plr.PlayerGui:FindFirstChild('BecomeDJ') then
script.Parent.BecomeDJ:Clone().Parent = plr.PlayerGui
end
end
end
end
nope not doing anything
|
|
|
KapKing47Join Date: 2012-09-09 Post Count: 5522 |
Center exists, and it exists in workspace right?
"My Life is going Good... but..." |
|
|
KapKing47Join Date: 2012-09-09 Post Count: 5522 |
if math.abs(t.Position.X - game.Workspace.Center.Position.X) > limit_X or math.abs(t.Position.Z - game.Workspace.Center.Position.Z) > limit_Z then
plr.PlayerGui.BecomeDJ:Destroy()
if not math.abs(t.Position.X - game.Workspace.Center.Position.X) > limit_X or not math.abs(t.Position.Z - game.Workspace.Center.Position.Z) > limit_Z then
u need to separate these 2 :P Cos wat u have right now just checks if the player is outside and IF he is, only then it checks if he's inside which is clearly what we don't want...
if math.abs(t.Position.X - game.Workspace.Center.Position.X) > limit_X or math.abs(t.Position.Z - game.Workspace.Center.Position.Z) > limit_Z then
plr.PlayerGui.BecomeDJ:Destroy()
elseif not math.abs(t.Position.X - game.Workspace.Center.Position.X) > limit_X or not math.abs(t.Position.Z - game.Workspace.Center.Position.Z) > limit_Z then
here :P
"My Life is going Good... but..." |
|
|
local limit_X = 100
local limit_Z = 100
for i, plr in pairs(game.Players:GetPlayers()) do
local t = plr.Character.Torso
if math.abs(t.Position.X - game.Workspace.Center.Position.X) > limit_X or math.abs(t.Position.Z - game.Workspace.Center.Position.Z) > limit_Z then
plr.PlayerGui.BecomeDJ:Destroy()
elseif not math.abs(t.Position.X - game.Workspace.Center.Position.X) > limit_X or not math.abs(t.Position.Z - game.Workspace.Center.Position.Z) > limit_Z then
if not plr.PlayerGui:FindFirstChild('BecomeDJ') then
script.Parent.BecomeDJ:Clone().Parent = plr.PlayerGui
end
end
end
this is what I got now but still it does absolutely nothing
|
|
|
I still cant figure out why this doesn't work. |
|
KapKing47Join Date: 2012-09-09 Post Count: 5522 |
Um, is there an error?
"My Life is going Good... but..." |
|
|
no there is no error at all that's one reason Idk whats wrong |
|
KapKing47Join Date: 2012-09-09 Post Count: 5522 |
Well then, have u actually measured how long the distance is in the X axis and the Z axis??? Cos u kept 100 as both axis limits :/ Might be that u haven't edited the distance limit :P
"My Life is going Good... but..." |
|
|
ik ill have to fix that but first I need to make it actually give me the gui in the first place. Even when I stand right on the Center it doesn't do anything. |
|
KapKing47Join Date: 2012-09-09 Post Count: 5522 |
Take a screenshot off the FULL code so I can see that it's 100% just what I told u to copy, then also show me proof that the gui is in the place that is specified in the script, and then show me proof that the center piece is near the player and not somewhere else.
"My Life is going Good... but..." |
|
|
local limit_X = 100
local limit_Z = 100
for i, plr in pairs(game.Players:GetPlayers()) do
local t = plr.Character.Torso
if math.abs(t.Position.X - game.Workspace.Center.Position.X) > limit_X or math.abs(t.Position.Z - game.Workspace.Center.Position.Z) > limit_Z then
script.Parent.BecomeDJ:Destroy()
elseif not math.abs(t.Position.X - game.Workspace.Center.Position.X) > limit_X or math.abs(t.Position.Z - game.Workspace.Center.Position.Z) > limit_Z then
print "Is In Club"
if not plr.PlayerGui:FindFirstChild('BecomeDJ') then
script.Parent.BecomeDJ:Clone().Parent = plr.PlayerGui
end
end
end
this is the script. The script is inside the building model. AND the becomeDJ gui is in the same area as the script.
|
|
|
that is the full script nothing more nothing less |
|