i scripted a local script that if my “move dlc” value is true, then my gui should be destoryed and my control should be enabled with “warn” message
but even if my value is true, my gui comes out
if i tested with value’s false, nothing happens…
(they are in starergui)
gui show up code
local plr = game.Players.LocalPlayer
plr.CharacterAdded:Wait()
if plr:FindFirstChild("move_dlc").Value == true then
plr.PlayerGui:FindFirstChild("dcl for move"):Destroy()
script:Destroy()
else
local userinputservice = game:GetService("UserInputService")
userinputservice.InputBegan:Connect(function(input, gameProcessedEvent)
if gameProcessedEvent then return end
local frame = plr.PlayerGui:FindFirstChild("dcl for move"):FindFirstChild("Frame")
if input.UserInputType == Enum.UserInputType.Keyboard and plr:FindFirstChild("move_dlc").Value == false then
if frame.Position == UDim2.new(0.499, 0, -0.7, 0) and input.KeyCode == Enum.KeyCode.W then
frame.Visible = true
script.show:Play()
frame:TweenPosition(UDim2.new(0.499, 0, 0.447, 0),
"Out",
"Bounce",
0.6,
true)
end
if frame.Position == UDim2.new(0.499, 0, -0.7, 0) and input.KeyCode == Enum.KeyCode.W then
frame.Visible = true
script.show:Play()
frame:TweenPosition(UDim2.new(0.499, 0, 0.447, 0),
"Out",
"Bounce",
0.6,
true)
end
if frame.Position == UDim2.new(0.499, 0, -0.7, 0) and input.KeyCode == Enum.KeyCode.W then
frame.Visible = true
script.show:Play()
frame:TweenPosition(UDim2.new(0.499, 0, 0.447, 0),
"Out",
"Bounce",
0.6,
true)
end
if frame.Position == UDim2.new(0.499, 0, -0.7, 0) and input.KeyCode == Enum.KeyCode.W then
frame.Visible = true
script.show:Play()
frame:TweenPosition(UDim2.new(0.499, 0, 0.447, 0),
"Out",
"Bounce",
0.6,
true)
end
end
end)
end
enable/disable move code
local plr = game.Players.LocalPlayer
plr.CharacterAdded:Wait()
local controls = require(plr.PlayerScripts:WaitForChild("PlayerModule")):GetControls()
if plr:FindFirstChild("move_dlc").Value == true then
warn(plr.Name.." has a move dlc")
controls:Enable()
script:Destroy()
else
warn("unable to move, "..game.Players.LocalPlayer.Name)
controls:Disable()
end
if i put those on starterplayerscripts, they worked but not perfectly
always show up gui even if my value is true