KapKing47
#182271171Sunday, January 24, 2016 1:00 AM GMT

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..."
noobloser101
#182339643Sunday, January 24, 2016 10:33 PM GMT

I'm glad u made a suggestion and also im using a regular script and how do I loop through the player?
KapKing47
#182391611Monday, January 25, 2016 6:58 PM GMT

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..."
noobloser101
#182422507Tuesday, January 26, 2016 2:44 AM GMT

do I add this to my current script or change my script?
noobloser101
#182423161Tuesday, January 26, 2016 2:55 AM GMT

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
noobloser101
#182438789Tuesday, January 26, 2016 12:14 PM GMT

How do I fix this?
KapKing47
#182456515Tuesday, January 26, 2016 8:57 PM GMT

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..."
noobloser101
#182459344Tuesday, January 26, 2016 9:41 PM GMT

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
KapKing47
#182459794Tuesday, January 26, 2016 9:48 PM GMT

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..."
SonyController
#182461040Tuesday, January 26, 2016 10:07 PM GMT

Magnitude probably wouldn't work. Unless the building is cylindrical, of course. ^.^
noobloser101
#182461858Tuesday, January 26, 2016 10:20 PM GMT

the building isnt cylindrical
noobloser101
#182462140Tuesday, January 26, 2016 10:24 PM GMT

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
noobloser101
#182482544Wednesday, January 27, 2016 3:11 AM GMT

Why won't it work
KapKing47
#182494918Wednesday, January 27, 2016 8:27 AM GMT

Center exists, and it exists in workspace right? "My Life is going Good... but..."
noobloser101
#182519144Wednesday, January 27, 2016 9:48 PM GMT

Yah
KapKing47
#182519611Wednesday, January 27, 2016 9:55 PM GMT

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..."
noobloser101
#182582232Friday, January 29, 2016 12:29 AM GMT

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
noobloser101
#182848899Monday, February 01, 2016 10:21 PM GMT

I still cant figure out why this doesn't work.
KapKing47
#182852851Monday, February 01, 2016 11:28 PM GMT

Um, is there an error? "My Life is going Good... but..."
noobloser101
#182854414Monday, February 01, 2016 11:53 PM GMT

no there is no error at all that's one reason Idk whats wrong
KapKing47
#182855104Tuesday, February 02, 2016 12:04 AM GMT

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..."
noobloser101
#182855297Tuesday, February 02, 2016 12:07 AM GMT

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.
KapKing47
#182855569Tuesday, February 02, 2016 12:11 AM GMT

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..."
noobloser101
#182855654Tuesday, February 02, 2016 12:12 AM GMT

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.
noobloser101
#182855692Tuesday, February 02, 2016 12:13 AM GMT

that is the full script nothing more nothing less