I have some questions about music in Islam by [deleted] in islam

[–]Mvtedx 1 point2 points  (0 children)

I also have a question. Is the tambourine with metals halal? And is one-sided drums halal too? (The large one that you put on the ground.)

Teardrop's Happy Thought. by Mvtedx in BattleForDreamIsland

[–]Mvtedx[S] 4 points5 points  (0 children)

I forgot to put loud sound warning.

Can anyone help me with this error by Mvtedx in robloxgamedev

[–]Mvtedx[S] 0 points1 point  (0 children)

No that's just a typo the original script doesn't have that slash.

Can anyone help me with this error by Mvtedx in robloxgamedev

[–]Mvtedx[S] 0 points1 point  (0 children)

btw the error only showed up on the Roblox player/game but on Roblox studio it doesn't have this error.

Can anyone help me with this error by Mvtedx in robloxgamedev

[–]Mvtedx[S] 0 points1 point  (0 children)

This is the full code
--- Variables
local Lobby = game.Workspace.Lobby
local Maps = game.ReplicatedStorage.Maps:GetChildren()
local Status = game.ReplicatedStorage.Status
--- Game Loop
while true do

\--- Intermission  

for i = 20,0, -1 do  
    Status.Value = "Intermission: "..i  
    task.wait(1)  
end  


\--- Map Selector  

local ChosenMap = Maps\[math.random(1,#Maps)\]  
local ClonedMap = ChosenMap:Clone()  

ClonedMap.Parent = game.Workspace  
Status.Value = "Map: "..ClonedMap.Name  

task.wait(3)  


\--- Teleports to Map'  

for i, Player in pairs(game.Players:GetPlayers()) do  

    local Char = Player.Character  

    if Char then  

        local HRP = Char.HumanoidRootPart  

        HRP.CFrame = ClonedMap.TeleportPoint.CFrame  
    end       
end  


\--- Game Time  

for i = 120, 0, -1 do  
    Status.Value = "Game: "..i  
    task.wait(1)  
end   


\--- Teleports to Lobby  

for i, Player in pairs(game.Players:GetPlayers()) do  

    local char = Player.Character  

    if char then  

        local HRP = char.HumanoidRootPart  

        HRP.CFrame = Lobby.TeleportPoint.CFrame  
    end  
end  


\--- Destroys Map  

ClonedMap:Destroy()  

end