What type of roblox scripter are you? this is a quiz that will tell you your scripting level and more . Enjoy the quiz and good luck! RarityGameYT published on February 18, 2022 Stacked 1/6 what does this do?local function added(plr)plr.PlayerGui.ScreenGui.Enabled = trueendgame.Players.PlayerAdded:Connect(added) It shows a text it makes a player have a text on screen (only 1st player that joins) It shows every player a ui when they join it shows only to you a ui when you join it shows a ui but there's a way to make it smaller . Make it like this :game.Players.PlayerAdded:Connect(function(player)player.PlayerGui.ScreenGui.Enable... 2/6 what does this do?local clickdet = Instance.new("ClickDetctor",script.Parent)local function Clicked(player)player:WaitForChild("leaderstats").Cash.Value += 2endclickdet.MouseClick:Connect(Clicked) adds a clickdetector to a part It gives an error It adds a clickdetector to a part and if you click it , it gives you 2 cash It makes the part invisible If you click the part , it makes it give 2 cash 3/6 How do you make a script that changes part's transparency? local part = script.Parentpart.invisible = true script.Parent = 0 script.Parent.Transparency = 0 SCRIPT.CANCOLLIDE = FALSE 4/6 how do you make a coin that when you touch it , you get 1 cash Insert script in ServerScriptStorage1 game.workspace.Part.Touched == true then2 player.cash = 2 Insert script in the part1 script.Parent.Touched:Connect(function(player)2 player.leaderstats.Cash.Value += 23 end) Insert script in ServerScriptStorage 1 local function add()2 game.:GetService("Workspace").Part.Touched:Connect(function(players)3 player:WaitForChild("l... Insert in Workspace1 game.Players.PlayerAdded:Connect(function()2 game.Workspace.Part.Touched:Connect(function(player)3 player.leaderstats.Cash.Value += ... 5/6 What does this do?print("h") it shows "h" on your screen it shows "h" on your tool It shows "h" on screen and you can reply it outputs "h" in developer console which can be seen by saying "/console" in chat it shows a bar that shows "h" for a limited time 6/6 Have you ever heard of law lua? No? Yeah but Idk how to use it yes I did Yes and mostly exploiters use it No but I think its easy to use